diff options
Diffstat (limited to 'arch/arm/mach-kirkwood/common.c')
-rw-r--r-- | arch/arm/mach-kirkwood/common.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-kirkwood/common.c b/arch/arm/mach-kirkwood/common.c index f759ca243925..6072eaa5e66a 100644 --- a/arch/arm/mach-kirkwood/common.c +++ b/arch/arm/mach-kirkwood/common.c | |||
@@ -305,6 +305,15 @@ void __init kirkwood_nand_init(struct mtd_partition *parts, int nr_parts, | |||
305 | platform_device_register(&kirkwood_nand_flash); | 305 | platform_device_register(&kirkwood_nand_flash); |
306 | } | 306 | } |
307 | 307 | ||
308 | void __init kirkwood_nand_init_rnb(struct mtd_partition *parts, int nr_parts, | ||
309 | int (*dev_ready)(struct mtd_info *)) | ||
310 | { | ||
311 | kirkwood_clk_ctrl |= CGC_RUNIT; | ||
312 | kirkwood_nand_data.parts = parts; | ||
313 | kirkwood_nand_data.nr_parts = nr_parts; | ||
314 | kirkwood_nand_data.dev_ready = dev_ready; | ||
315 | platform_device_register(&kirkwood_nand_flash); | ||
316 | } | ||
308 | 317 | ||
309 | /***************************************************************************** | 318 | /***************************************************************************** |
310 | * SoC RTC | 319 | * SoC RTC |