diff options
-rw-r--r-- | drivers/leds/leds-tca6507.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/leds/leds-tca6507.c b/drivers/leds/leds-tca6507.c index 45222a7f4f75..c12c16fb1b9c 100644 --- a/drivers/leds/leds-tca6507.c +++ b/drivers/leds/leds-tca6507.c | |||
@@ -715,7 +715,7 @@ tca6507_led_dt_init(struct i2c_client *client) | |||
715 | if (of_property_match_string(child, "compatible", "gpio") >= 0) | 715 | if (of_property_match_string(child, "compatible", "gpio") >= 0) |
716 | led.flags |= TCA6507_MAKE_GPIO; | 716 | led.flags |= TCA6507_MAKE_GPIO; |
717 | ret = of_property_read_u32(child, "reg", ®); | 717 | ret = of_property_read_u32(child, "reg", ®); |
718 | if (ret != 0 || reg < 0 || reg >= NUM_LEDS) | 718 | if (ret != 0 || reg >= NUM_LEDS) |
719 | continue; | 719 | continue; |
720 | 720 | ||
721 | tca_leds[reg] = led; | 721 | tca_leds[reg] = led; |