Re: [PATCH] ARM: OMAP1: ams-delta: fix early boot crash when LED support is disabled

2019-04-16 Thread Tony Lindgren
* Pavel Machek [190416 07:14]: > On Tue 2019-04-16 02:37:32, Aaro Koskinen wrote: > > When we boot with the LED support (CONFIG_NEW_LEDS) disabled, > > gpio_led_register_device() will return a NULL pointer and we try > > to dereference it. Fix by checking also for a NULL pointer. > > > > Fixes:

Re: [PATCH] ARM: OMAP1: ams-delta: fix early boot crash when LED support is disabled

2019-04-16 Thread Pavel Machek
On Tue 2019-04-16 02:37:32, Aaro Koskinen wrote: > When we boot with the LED support (CONFIG_NEW_LEDS) disabled, > gpio_led_register_device() will return a NULL pointer and we try > to dereference it. Fix by checking also for a NULL pointer. > > Fixes: 19a2668a8ae3 ("ARM: OMAP1: ams-delta:

[PATCH] ARM: OMAP1: ams-delta: fix early boot crash when LED support is disabled

2019-04-15 Thread Aaro Koskinen
When we boot with the LED support (CONFIG_NEW_LEDS) disabled, gpio_led_register_device() will return a NULL pointer and we try to dereference it. Fix by checking also for a NULL pointer. Fixes: 19a2668a8ae3 ("ARM: OMAP1: ams-delta: Provide GPIO lookup table for LED device") Signed-off-by: Aaro