“d30827ce0df4410648c3fbba48681d7aafb19f36”上不存在“drivers/gpu/git@gitcode.net:openeuler/raspberrypi-kernel.git”
提交 94bf9e0c 编写于 作者: C Christos Gkekas 提交者: Jacek Anaszewski

leds: tca6507: Remove unnecessary reg check

Variable reg is unsigned so checking whether it is less than zero is not
necessary.
Signed-off-by: NChristos Gkekas <chris.gekas@gmail.com>
Acked-by: NPavel Machek <pavel@ucw.cz>
Signed-off-by: NJacek Anaszewski <jacek.anaszewski@gmail.com>
上级 26c7d6a3
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册