ARM: OMAP2+: nand: Make board_onenand_init() visible to board code
authorJavier Martinez Canillas <javier@dowhile0.org>
Wed, 9 May 2012 21:19:14 +0000 (14:19 -0700)
committerTony Lindgren <tony@atomide.com>
Wed, 9 May 2012 21:19:14 +0000 (14:19 -0700)
board_onenand_init() and board_nand_init() initialization functions are
used to initialize OneNAND and NAND memories respectively. But only
board_nand_init() was visible to be used from board code. This patch makes
possible to initialize a OneNAND flash memory within platform code.

Signed-off-by: Javier Martinez Canillas <javier@dowhile0.org>
Acked-by: Enric Balletbo i Serra <eballetbo@gmail.com>
Tested-by: Enric Balletbo i Serra <eballetbo@gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap2/board-flash.c
arch/arm/mach-omap2/board-flash.h

index 0349fd2b68d86afd6fd0dccf805d24f425769e2f..70a81f900bb5514d813c9f57c38ca64656798c4b 100644 (file)
@@ -87,7 +87,7 @@ static struct omap_onenand_platform_data board_onenand_data = {
        .dma_channel    = -1,   /* disable DMA in OMAP OneNAND driver */
 };
 
-static void
+void
 __init board_onenand_init(struct mtd_partition *onenand_parts,
                                u8 nr_parts, u8 cs)
 {
@@ -98,7 +98,7 @@ __init board_onenand_init(struct mtd_partition *onenand_parts,
        gpmc_onenand_init(&board_onenand_data);
 }
 #else
-static void
+void
 __init board_onenand_init(struct mtd_partition *nor_parts, u8 nr_parts, u8 cs)
 {
 }
index d25503a98417d6d8b02a5bd1fb8ace8af1e9fcf3..c44b70d5202173a879519ea9ebf2cacdb1ac29d0 100644 (file)
@@ -47,3 +47,14 @@ static inline void board_nand_init(struct mtd_partition *nand_parts,
 {
 }
 #endif
+
+#if defined(CONFIG_MTD_ONENAND_OMAP2) || \
+               defined(CONFIG_MTD_ONENAND_OMAP2_MODULE)
+extern void board_onenand_init(struct mtd_partition *nand_parts,
+                                       u8 nr_parts, u8 cs);
+#else
+static inline void board_onenand_init(struct mtd_partition *nand_parts,
+                                       u8 nr_parts, u8 cs)
+{
+}
+#endif