diff options
Diffstat (limited to 'drivers/leds/leds-lp8788.c')
| -rw-r--r-- | drivers/leds/leds-lp8788.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/leds/leds-lp8788.c b/drivers/leds/leds-lp8788.c index 53bd136f1ef..0ade6ebfc91 100644 --- a/drivers/leds/leds-lp8788.c +++ b/drivers/leds/leds-lp8788.c @@ -63,7 +63,7 @@ static int lp8788_led_init_device(struct lp8788_led *led,  	/* scale configuration */  	addr = LP8788_ISINK_CTRL;  	mask = 1 << (cfg->num + LP8788_ISINK_SCALE_OFFSET); -	val = cfg->scale << cfg->num; +	val = cfg->scale << (cfg->num + LP8788_ISINK_SCALE_OFFSET);  	ret = lp8788_update_bits(led->lp, addr, mask, val);  	if (ret)  		return ret;  |