summaryrefslogtreecommitdiffstats
path: root/include/nand.h
blob: fb3b5a108810465db08fea50679b314448333d84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef __NAND_H__
#define __NAND_H__

struct nand_bb;

#ifdef CONFIG_NAND
int dev_add_bb_dev(const char *filename, const char *name);
int dev_remove_bb_dev(const char *name);
struct cdev *mtd_add_bb(struct mtd_info *mtd, const char *name);
void mtd_del_bb(struct mtd_info *mtd);
#else
static inline int dev_add_bb_dev(const char *filename, const char *name) {
	return 0;
}
static inline int dev_remove_bb_dev(const char *name)
{
	return 0;
}

static inline struct cdev *mtd_add_bb(struct mtd_info *mtd, const char *name)
{
	return NULL;
}

static inline void mtd_del_bb(struct mtd_info *mtd)
{
}
#endif

#endif /* __NAND_H__ */