1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-20 06:28:12 +02:00

register earlier extended platform devices

Signed-off-by: Miguel Gaio <miguel.gaio@efixo.com>

SVN-Revision: 23497
This commit is contained in:
Florian Fainelli 2010-10-17 14:08:34 +00:00
parent a6873b3095
commit d5854cfd4d

@ -1,15 +1,15 @@
--- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
+++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
@@ -1051,5 +1051,9 @@ int __init board_register_devices(void)
platform_device_register(&bcm63xx_gpio_buttons_device);
}
@@ -1017,6 +1017,9 @@ int __init board_register_devices(void)
if (board.has_udc0)
bcm63xx_udc_register();
+ if (board.num_devs) {
+ if (board.num_devs)
+ platform_add_devices(board.devs, board.num_devs);
+ }
+
return 0;
}
/* read base address of boot chip select (0) */
if (BCMCPU_IS_6345())
val = 0x1fc00000;
--- a/arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h
+++ b/arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h
@@ -61,6 +61,10 @@ struct board_info {