Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: fieldbus: arcx-anybus: Do not check 0 for platform_get_irq()

Since platform_get_irq() never returned zero, so it need not to check
whether it returned zero, and we use the return error code of
platform_get_irq() to replace the current return error code, for that
platform_get_irq() may return -EINVAL or -ENXIO.

Signed-off-by: Zhu Wang <wangzhu9@huawei.com>
Link: https://lore.kernel.org/r/20230803092701.52697-1-wangzhu9@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Zhu Wang and committed by
Greg Kroah-Hartman
ac19020b 2f59ee3f

+2 -2
+2 -2
drivers/staging/fieldbus/anybuss/arcx-anybus.c
··· 156 156 if (IS_ERR(ops.regmap)) 157 157 return ERR_CAST(ops.regmap); 158 158 ops.irq = platform_get_irq(pdev, idx); 159 - if (ops.irq <= 0) 160 - return ERR_PTR(-EINVAL); 159 + if (ops.irq < 0) 160 + return ERR_PTR(ops.irq); 161 161 return devm_anybuss_host_common_probe(&pdev->dev, &ops); 162 162 } 163 163