aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/leds/leds-max8997.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2018-07-02 17:50:37 +0100
committerJacek Anaszewski <jacek.anaszewski@gmail.com>2018-07-03 22:12:41 +0200
commit7a5de56db902ea632a0ff0c2b47481d278db645f (patch)
tree1e7c95168e3114499983cf7a7b3bc5286bbd96b9 /drivers/leds/leds-max8997.c
parentleds: lt3593: update email address and switch to SPDX license header (diff)
downloadlinux-dev-7a5de56db902ea632a0ff0c2b47481d278db645f.tar.xz
linux-dev-7a5de56db902ea632a0ff0c2b47481d278db645f.zip
leds: max8997: use mode when calling max8997_led_set_mode
Variable mode is assigned to pdata->led_pdata->mode[led->id] and yet is not being used when calling function max8997_led_set_mode. Fix this by using mode when calling max8997_led_set_mode. Cleans up clang warning: warning: variable 'mode' set but not used [-Wunused-but-set-variable] Fixes: 8584cb82f151 ("leds: Add suuport for MAX8997-LED driver") Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Jacek Anaszewski <jacek.anaszewski@gmail.com>
Diffstat (limited to 'drivers/leds/leds-max8997.c')
-rw-r--r--drivers/leds/leds-max8997.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/leds/leds-max8997.c b/drivers/leds/leds-max8997.c
index 4edf74f1d6d4..8c019c28f9f5 100644
--- a/drivers/leds/leds-max8997.c
+++ b/drivers/leds/leds-max8997.c
@@ -268,7 +268,7 @@ static int max8997_led_probe(struct platform_device *pdev)
mode = pdata->led_pdata->mode[led->id];
brightness = pdata->led_pdata->brightness[led->id];
- max8997_led_set_mode(led, pdata->led_pdata->mode[led->id]);
+ max8997_led_set_mode(led, mode);
if (brightness > led->cdev.max_brightness)
brightness = led->cdev.max_brightness;