summaryrefslogtreecommitdiff
path: root/include/nand.h
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-12-06 07:40:55 (GMT)
committerScott Wood <scottwood@freescale.com>2009-01-23 16:32:49 (GMT)
commit69fb8be4fc07162fdf6edf04bdc7233b0e9a920e (patch)
treee3a8292ceeaef00135e97e79143506de8b61ec28 /include/nand.h
parent1ae39862044ebb1e682234b51f94421e3f871d6a (diff)
downloadu-boot-fsl-qoriq-69fb8be4fc07162fdf6edf04bdc7233b0e9a920e.tar.xz
NAND: move board_nand_init to nand.h
Rather than putting the function prototype for board_nand_init() in the one place where it gets called, put it into nand.h so that every place that also defines it gets the prototype. Otherwise, errors can go silently unnoticed such as using the wrong return value (void rather than int) when defining the function. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'include/nand.h')
-rw-r--r--include/nand.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/nand.h b/include/nand.h
index b4f316f..065a42c 100644
--- a/include/nand.h
+++ b/include/nand.h
@@ -31,6 +31,8 @@ extern void nand_init(void);
#include <linux/mtd/mtd.h>
#include <linux/mtd/nand.h>
+extern int board_nand_init(struct nand_chip *nand);
+
typedef struct mtd_info nand_info_t;
extern int nand_curr_device;