Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 94bf9e0c authored by Christos Gkekas's avatar Christos Gkekas Committed by Jacek Anaszewski
Browse files

leds: tca6507: Remove unnecessary reg check



Variable reg is unsigned so checking whether it is less than zero is not
necessary.

Signed-off-by: default avatarChristos Gkekas <chris.gekas@gmail.com>
Acked-by: default avatarPavel Machek <pavel@ucw.cz>
Signed-off-by: default avatarJacek Anaszewski <jacek.anaszewski@gmail.com>
parent 26c7d6a3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -715,7 +715,7 @@ tca6507_led_dt_init(struct i2c_client *client)
		if (of_property_match_string(child, "compatible", "gpio") >= 0)
			led.flags |= TCA6507_MAKE_GPIO;
		ret = of_property_read_u32(child, "reg", &reg);
		if (ret != 0 || reg < 0 || reg >= NUM_LEDS)
		if (ret != 0 || reg >= NUM_LEDS)
			continue;

		tca_leds[reg] = led;