diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2012-08-12 13:08:05 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-08-21 16:05:53 -0400 |
commit | 371a00448f95adaa612cf1a0b31a11e7093bc706 (patch) | |
tree | 6ffb57fcb3050a54942ffd320c149780da41b841 /drivers/bcma/main.c | |
parent | d57ef3a6a2eeb88df47e892c66692e3f59722ffe (diff) | |
download | linux-next-371a00448f95adaa612cf1a0b31a11e7093bc706.tar.gz |
bcma: detect and register NAND flash device
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/bcma/main.c')
-rw-r--r-- | drivers/bcma/main.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/bcma/main.c b/drivers/bcma/main.c index a501d259287c..a8f570d69075 100644 --- a/drivers/bcma/main.c +++ b/drivers/bcma/main.c @@ -145,6 +145,14 @@ static int bcma_register_cores(struct bcma_bus *bus) } #endif +#ifdef CONFIG_BCMA_NFLASH + if (bus->drv_cc.nflash.present) { + err = platform_device_register(&bcma_nflash_dev); + if (err) + bcma_err(bus, "Error registering NAND flash\n"); + } +#endif + return 0; } |