Commit fc8a2041 authored by Ruan Jinjie's avatar Ruan Jinjie Committed by Linus Walleij

pinctrl: stmfx: Do not check for 0 return after calling platform_get_irq()

Since commit ce753ad1 ("platform: finally disallow IRQ0 in
platform_get_irq() and its ilk"), there is no possible for
platform_get_irq() to return 0. Use the return value
from platform_get_irq().
Signed-off-by: default avatarRuan Jinjie <ruanjinjie@huawei.com>
Link: https://lore.kernel.org/r/20230803094304.733371-1-ruanjinjie@huawei.comSigned-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent c7351b46
......@@ -659,8 +659,8 @@ static int stmfx_pinctrl_probe(struct platform_device *pdev)
}
irq = platform_get_irq(pdev, 0);
if (irq <= 0)
return -ENXIO;
if (irq < 0)
return irq;
mutex_init(&pctl->lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment