3.16.62-rc1 review patch.  If anyone has any objections, please let me know.

------------------

From: Colin Ian King <[email protected]>

commit 7a5de56db902ea632a0ff0c2b47481d278db645f upstream.

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 <[email protected]>
Signed-off-by: Jacek Anaszewski <[email protected]>
Signed-off-by: Ben Hutchings <[email protected]>
---
 drivers/leds/leds-max8997.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/leds/leds-max8997.c
+++ b/drivers/leds/leds-max8997.c
@@ -262,7 +262,7 @@ static int max8997_led_probe(struct plat
                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;

Reply via email to