1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-26 01:27:28 +02:00

fix leds-gpio platform data initialization (closes #4512)

SVN-Revision: 14238
This commit is contained in:
Gabor Juhos 2009-01-28 11:48:14 +00:00
parent a7187cb4ff
commit e3d58387a3

View File

@ -515,7 +515,7 @@ void __init ar71xx_add_device_leds_gpio(int id, unsigned num_leds,
memset(&pdata, 0, sizeof(pdata));
pdata.num_leds = num_leds;
pdata.leds = leds;
pdata.leds = p;
err = platform_device_add_data(pdev, &pdata, sizeof(pdata));
if (err)