2012-02-04 18:17:27 +08:00
|
|
|
--- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
|
|
|
|
+++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
|
2012-07-07 06:10:37 +08:00
|
|
|
@@ -901,6 +901,9 @@ int __init board_register_devices(void)
|
2012-03-29 04:42:25 +08:00
|
|
|
|
|
|
|
bcm63xx_spi_register();
|
2012-02-04 18:17:27 +08:00
|
|
|
|
|
|
|
+ if (board.num_devs)
|
|
|
|
+ platform_add_devices(board.devs, board.num_devs);
|
|
|
|
+
|
2012-07-04 05:42:07 +08:00
|
|
|
bcm63xx_flash_register();
|
|
|
|
|
|
|
|
/* count number of LEDs defined by this device */
|
2012-02-04 18:17:27 +08:00
|
|
|
--- a/arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h
|
|
|
|
+++ b/arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h
|
2012-03-13 22:06:44 +08:00
|
|
|
@@ -61,6 +61,10 @@ struct board_info {
|
2012-02-04 18:17:27 +08:00
|
|
|
|
|
|
|
/* Buttons */
|
2012-04-28 00:44:48 +08:00
|
|
|
struct gpio_keys_button buttons[4];
|
2012-02-04 18:17:27 +08:00
|
|
|
+
|
|
|
|
+ /* Additional platform devices */
|
|
|
|
+ struct platform_device **devs;
|
|
|
|
+ unsigned int num_devs;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* ! BOARD_BCM963XX_H_ */
|