19 lines
384 B
C
Executable File
19 lines
384 B
C
Executable File
/*
|
|
* The module interface of SUNXI NAND .
|
|
*
|
|
* Copyright (C) 2016 Allwinner.
|
|
*
|
|
*
|
|
* This file is licensed under the terms of the GNU General Public
|
|
* License version 2. This program is licensed "as is" without any
|
|
* warranty of any kind, whether express or implied.
|
|
*/
|
|
#ifndef __NAND_INCLUDE_H__
|
|
#define __NAND_INCLUDE_H__
|
|
|
|
int nand_init(void);
|
|
void nand_exit(void);
|
|
|
|
#endif
|
|
|