From: Zhu Wang Date: Thu, 3 Aug 2023 07:10:06 +0000 (+0800) Subject: fbdev: goldfishfb: Do not check 0 for platform_get_irq() X-Git-Tag: v6.6.7~2169^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0650d5098f8b6b232cd5ea0e15437fc38f7d63ba;p=platform%2Fkernel%2Flinux-starfive.git fbdev: goldfishfb: 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. Please refer to the commit a85a6c86c25b ("driver core: platform: Clarify that IRQ 0 is invalid") to get that platform_get_irq() never returned zero. Signed-off-by: Zhu Wang Signed-off-by: Helge Deller --- diff --git a/drivers/video/fbdev/goldfishfb.c b/drivers/video/fbdev/goldfishfb.c index 6fa2108..e41c9fe 100644 --- a/drivers/video/fbdev/goldfishfb.c +++ b/drivers/video/fbdev/goldfishfb.c @@ -203,8 +203,8 @@ static int goldfish_fb_probe(struct platform_device *pdev) } fb->irq = platform_get_irq(pdev, 0); - if (fb->irq <= 0) { - ret = -ENODEV; + if (fb->irq < 0) { + ret = fb->irq; goto err_no_irq; }