aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacek Anaszewski <[email protected]>2014-08-08 00:09:44 -0700
committerBryan Wu <[email protected]>2014-09-11 16:55:27 -0700
commit7f14e6b9c36f6696eb937bc0cf86a7732aa89904 (patch)
tree239581b0a7de9869751b1a431ab824fa15598ac6
parent3841961269f76db243339a94005729f10829911e (diff)
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 <[email protected]> Acked-by: Kyungmin Park <[email protected]> Cc: Richard Purdie <[email protected]> Signed-off-by: Bryan Wu <[email protected]>
-rw-r--r--drivers/leds/leds-lp3944.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/leds/leds-lp3944.c b/drivers/leds/leds-lp3944.c
index 8e1abdcd4c9d..53144fb96167 100644
--- a/drivers/leds/leds-lp3944.c
+++ b/drivers/leds/leds-lp3944.c
@@ -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);