summaryrefslogtreecommitdiffstats
path: root/include/nand.h
blob: 97b17056ea6fdba6caa836afde0b317f8084c01d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

#ifndef __NAND_H__
#define __NAND_H__

struct nand_chip;

struct nand_platform_data {
	void            (*hwcontrol)(struct nand_chip *, int cmd);
	int		eccmode;
	int             (*dev_ready)(struct nand_chip *);
	int		chip_delay;
};

#endif /* __NAND_H__ */