leds: lp3944: fix sparse warning
Fix sparse warning appeared after changing brightness type in the leds.h from int to enum led_brightness. Signed-off-by: Jacek Anaszewski <j.anaszewski@samsung.com> Acked-by: Kyungmin Park <kyungmin.park@samsung.com> Cc: Richard Purdie <rpurdie@rpsys.net> Signed-off-by: Bryan Wu <cooloney@gmail.com>
This commit is contained in:
parent
3841961269
commit
7f14e6b9c3
|
@ -335,7 +335,8 @@ static int lp3944_configure(struct i2c_client *client,
|
|||
}
|
||||
|
||||
/* to expose the default value to userspace */
|
||||
led->ldev.brightness = led->status;
|
||||
led->ldev.brightness =
|
||||
(enum led_brightness) led->status;
|
||||
|
||||
/* Set the default led status */
|
||||
err = lp3944_led_set(led, led->status);
|
||||
|
|
Loading…
Reference in New Issue