From 5af6e7724b53fbb6acaa13ab386645bfc595e891 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Huck?= Date: Thu, 29 Apr 2010 12:50:09 +0000 Subject: fix gpio_button device register SVN-Revision: 21252 --- .../brcm63xx/patches-2.6.33/100-reset_buttons.patch | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) (limited to 'target/linux/brcm63xx/patches-2.6.33/100-reset_buttons.patch') diff --git a/target/linux/brcm63xx/patches-2.6.33/100-reset_buttons.patch b/target/linux/brcm63xx/patches-2.6.33/100-reset_buttons.patch index e1faeeedaf..292e0a7cc9 100644 --- a/target/linux/brcm63xx/patches-2.6.33/100-reset_buttons.patch +++ b/target/linux/brcm63xx/patches-2.6.33/100-reset_buttons.patch @@ -43,7 +43,7 @@ }; static struct board_info __initdata board_FAST2404 = { -@@ -770,6 +792,16 @@ static struct platform_device bcm63xx_gp +@@ -770,12 +792,23 @@ static struct platform_device bcm63xx_gp .dev.platform_data = &bcm63xx_led_data, }; @@ -60,12 +60,23 @@ /* * third stage init callback, register all board devices. */ -@@ -825,6 +857,13 @@ int __init board_register_devices(void) + int __init board_register_devices(void) + { + u32 val; ++ int button_count = 0; + + if (board.has_pccard) + bcm63xx_pcmcia_register(); +@@ -825,6 +858,17 @@ int __init board_register_devices(void) platform_device_register(&bcm63xx_gpio_leds); -+ if (board.reset_buttons) { -+ bcm63xx_gpio_buttons_data.nbuttons = ARRAY_SIZE(board.reset_buttons); ++ /* count number of BUTTONs defined by this device */ ++ while (button_count < ARRAY_SIZE(board.reset_buttons) && board.reset_buttons[button_count].desc) ++ button_count++; ++ ++ if (button_count) { ++ bcm63xx_gpio_buttons_data.nbuttons = button_count; + bcm63xx_gpio_buttons_data.buttons = board.reset_buttons; + + platform_device_register(&bcm63xx_gpio_buttons_device); -- cgit v1.2.3