diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-09-08 15:24:06 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-09-08 15:24:06 +0000 |
commit | ddce282a1fa7cee3f77d69f011ea006d0baf2eb1 (patch) | |
tree | caceb8aeea0f6542962bcf1fc7986cee55f2654f /target/linux/brcm63xx/files/arch | |
parent | 0b378fbd378eb7448d6834a7b1bff1e04c335212 (diff) | |
download | master-187ad058-ddce282a1fa7cee3f77d69f011ea006d0baf2eb1.tar.gz master-187ad058-ddce282a1fa7cee3f77d69f011ea006d0baf2eb1.tar.bz2 master-187ad058-ddce282a1fa7cee3f77d69f011ea006d0baf2eb1.zip |
[brcm63xx] prevent gpio-buttons registration failure
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17542 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm63xx/files/arch')
-rw-r--r-- | target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c b/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c index b0497767cd..5f21516096 100644 --- a/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c +++ b/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c @@ -881,10 +881,12 @@ int __init board_register_devices(void) platform_device_register(&bcm63xx_gpio_leds); - bcm63xx_gpio_buttons_data.nbuttons = 1, - bcm63xx_gpio_buttons_data.buttons = board.reset_btn; + if (board.reset_btn) { + bcm63xx_gpio_buttons_data.nbuttons = 1, + bcm63xx_gpio_buttons_data.buttons = board.reset_btn; - platform_device_register(&bcm63xx_gpio_buttons_device); + platform_device_register(&bcm63xx_gpio_buttons_device); + } return 0; } |