mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
gpio: rc5t583: Remove redundant check
Variable "offset" cannot be negative, so no need to check if it greater than zero or equal. Signed-off-by: Alexander Shiyan <shc_work@mail.ru> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
58c0f5aa12
commit
3bde4d26f9
@ -97,7 +97,7 @@ static int rc5t583_gpio_to_irq(struct gpio_chip *gc, unsigned offset)
|
||||
{
|
||||
struct rc5t583_gpio *rc5t583_gpio = to_rc5t583_gpio(gc);
|
||||
|
||||
if ((offset >= 0) && (offset < 8))
|
||||
if (offset < RC5T583_MAX_GPIO)
|
||||
return rc5t583_gpio->rc5t583->irq_base +
|
||||
RC5T583_IRQ_GPIO0 + offset;
|
||||
return -EINVAL;
|
||||
|
Loading…
Reference in New Issue
Block a user