summaryrefslogtreecommitdiffstats
path: root/drivers/leds/leds-lp55xx-common.c
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2022-10-20 22:07:31 +0100
committerPavel Machek <pavel@ucw.cz>2022-10-21 15:12:06 +0200
commitfb0f4051ee8e0ae89697e417f1a547e715acc824 (patch)
tree57e2501bccbe0b173952cc02de886b854a482de2 /drivers/leds/leds-lp55xx-common.c
parent38bcb51f81af17a6d40fc135e565fc1fb8aa8e9d (diff)
downloadlinux-fb0f4051ee8e0ae89697e417f1a547e715acc824.tar.bz2
leds: lp55xx: remove variable j
The variable j being incremented but it is never referenced, it is redundant and can be removed. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: Pavel Machek <pavel@ucw.cz>
Diffstat (limited to 'drivers/leds/leds-lp55xx-common.c')
-rw-r--r--drivers/leds/leds-lp55xx-common.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/leds/leds-lp55xx-common.c b/drivers/leds/leds-lp55xx-common.c
index 9fdfc1b9a1a0..ca2e28fb843f 100644
--- a/drivers/leds/leds-lp55xx-common.c
+++ b/drivers/leds/leds-lp55xx-common.c
@@ -166,7 +166,7 @@ static int lp55xx_init_led(struct lp55xx_led *led,
struct mc_subled *mc_led_info;
struct led_classdev *led_cdev;
char name[32];
- int i, j = 0;
+ int i;
int ret;
if (chan >= max_channel) {
@@ -201,7 +201,6 @@ static int lp55xx_init_led(struct lp55xx_led *led,
pdata->led_config[chan].color_id[i];
mc_led_info[i].channel =
pdata->led_config[chan].output_num[i];
- j++;
}
led->mc_cdev.subled_info = mc_led_info;