[U-Boot] [PATCH] bf537-stamp/nand: fix board_nand_init prototype

Mike Frysinger vapier at gentoo.org
Tue Jan 6 17:39:20 CET 2009


The board_nand_init() function should return an int, not void.

Signed-off-by: Mike Frysinger <vapier at gentoo.org>
---
 board/bf537-stamp/nand.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/board/bf537-stamp/nand.c b/board/bf537-stamp/nand.c
index c597f2d..20a7d0e 100644
--- a/board/bf537-stamp/nand.c
+++ b/board/bf537-stamp/nand.c
@@ -87,7 +87,7 @@ int bfin_device_ready(struct mtd_info *mtd)
  * Members with a "?" were not set in the merged testing-NAND branch,
  * so they are not set here either.
  */
-void board_nand_init(struct nand_chip *nand)
+int board_nand_init(struct nand_chip *nand)
 {
 	*PORT(CONFIG_NAND_GPIO_PORT, _FER) &= ~BFIN_NAND_READY;
 	*PORT(CONFIG_NAND_GPIO_PORT, IO_DIR) &= ~BFIN_NAND_READY;
@@ -97,5 +97,7 @@ void board_nand_init(struct nand_chip *nand)
 	nand->ecc.mode = NAND_ECC_SOFT;
 	nand->dev_ready = bfin_device_ready;
 	nand->chip_delay = 30;
+
+	return 0;
 }
 #endif
-- 
1.6.0.6



More information about the U-Boot mailing list