fix gpio-leds, and gpio-buttons platform data initialization
SVN-Revision: 13337
This commit is contained in:
parent
dd2ab5bfb0
commit
b421c22787
1 changed files with 2 additions and 0 deletions
|
@ -347,6 +347,7 @@ void __init ar71xx_add_device_leds_gpio(int id, unsigned num_leds,
|
|||
if (!pdev)
|
||||
goto err_free_leds;
|
||||
|
||||
memset(&pdata, 0, sizeof(pdata));
|
||||
pdata.num_leds = num_leds;
|
||||
pdata.leds = leds;
|
||||
|
||||
|
@ -387,6 +388,7 @@ void __init ar71xx_add_device_gpio_buttons(int id,
|
|||
if (!pdev)
|
||||
goto err_free_buttons;
|
||||
|
||||
memset(&pdata, 0, sizeof(pdata));
|
||||
pdata.poll_interval = poll_interval;
|
||||
pdata.nbuttons = nbuttons;
|
||||
pdata.buttons = p;
|
||||
|
|
Loading…
Reference in a new issue