Commit 8259573b authored by Javier Martinez Canillas's avatar Javier Martinez Canillas Committed by Tony Lindgren

ARM: OMAP2+: nand: Make board_onenand_init() visible to board code

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: default avatarJavier Martinez Canillas <javier@dowhile0.org>
Acked-by: default avatarEnric Balletbo i Serra <eballetbo@gmail.com>
Tested-by: default avatarEnric Balletbo i Serra <eballetbo@gmail.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent d61676b8
...@@ -87,7 +87,7 @@ static struct omap_onenand_platform_data board_onenand_data = { ...@@ -87,7 +87,7 @@ static struct omap_onenand_platform_data board_onenand_data = {
.dma_channel = -1, /* disable DMA in OMAP OneNAND driver */ .dma_channel = -1, /* disable DMA in OMAP OneNAND driver */
}; };
static void void
__init board_onenand_init(struct mtd_partition *onenand_parts, __init board_onenand_init(struct mtd_partition *onenand_parts,
u8 nr_parts, u8 cs) u8 nr_parts, u8 cs)
{ {
...@@ -98,7 +98,7 @@ __init board_onenand_init(struct mtd_partition *onenand_parts, ...@@ -98,7 +98,7 @@ __init board_onenand_init(struct mtd_partition *onenand_parts,
gpmc_onenand_init(&board_onenand_data); gpmc_onenand_init(&board_onenand_data);
} }
#else #else
static void void
__init board_onenand_init(struct mtd_partition *nor_parts, u8 nr_parts, u8 cs) __init board_onenand_init(struct mtd_partition *nor_parts, u8 nr_parts, u8 cs)
{ {
} }
......
...@@ -47,3 +47,14 @@ static inline void board_nand_init(struct mtd_partition *nand_parts, ...@@ -47,3 +47,14 @@ static inline void board_nand_init(struct mtd_partition *nand_parts,
{ {
} }
#endif #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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment