2012-02-04 10:17:27 +00:00
|
|
|
--- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
|
|
|
|
+++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
|
2012-07-06 22:10:37 +00:00
|
|
|
@@ -864,6 +864,7 @@ static struct platform_device bcm63xx_gp
|
2012-07-03 21:42:07 +00:00
|
|
|
int __init board_register_devices(void)
|
2012-02-04 10:17:27 +00:00
|
|
|
{
|
|
|
|
int button_count = 0;
|
|
|
|
+ int led_count = 0;
|
|
|
|
|
|
|
|
if (board.has_uart0)
|
|
|
|
bcm63xx_uart_register(0);
|
2012-07-06 22:10:37 +00:00
|
|
|
@@ -902,7 +903,11 @@ int __init board_register_devices(void)
|
2012-02-04 10:17:27 +00:00
|
|
|
|
2012-07-03 21:42:07 +00:00
|
|
|
bcm63xx_flash_register();
|
2012-02-04 10:17:27 +00:00
|
|
|
|
|
|
|
- bcm63xx_led_data.num_leds = ARRAY_SIZE(board.leds);
|
|
|
|
+ /* count number of LEDs defined by this device */
|
|
|
|
+ while (led_count < ARRAY_SIZE(board.leds) && board.leds[led_count].name)
|
|
|
|
+ led_count++;
|
|
|
|
+
|
|
|
|
+ bcm63xx_led_data.num_leds = led_count;
|
|
|
|
bcm63xx_led_data.leds = board.leds;
|
|
|
|
|
|
|
|
platform_device_register(&bcm63xx_gpio_leds);
|
2012-06-06 13:31:24 +00:00
|
|
|
--- a/arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h
|
|
|
|
+++ b/arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h
|
|
|
|
@@ -57,7 +57,7 @@ struct board_info {
|
|
|
|
struct bcm63xx_dsp_platform_data dsp;
|
|
|
|
|
|
|
|
/* GPIO LEDs */
|
|
|
|
- struct gpio_led leds[5];
|
|
|
|
+ struct gpio_led leds[14];
|
|
|
|
|
|
|
|
/* Buttons */
|
|
|
|
struct gpio_keys_button buttons[4];
|