dri-devel Archive mirror
 help / color / mirror / Atom feed
* [PATCH -next] video: fbdev: goldfishfb: Do not check 0 for platform_get_irq()
@ 2023-08-03  7:10 Zhu Wang
  2023-08-15 21:17 ` Helge Deller
  0 siblings, 1 reply; 2+ messages in thread
From: Zhu Wang @ 2023-08-03  7:10 UTC (permalink / raw
  To: deller, u.kleine-koenig, tzimmermann, sam, linux-fbdev, dri-devel
  Cc: wangzhu9

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 <wangzhu9@huawei.com>
---
 drivers/video/fbdev/goldfishfb.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/video/fbdev/goldfishfb.c b/drivers/video/fbdev/goldfishfb.c
index ef2528c3faa9..c3091ce26e5c 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;
 	}
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH -next] video: fbdev: goldfishfb: Do not check 0 for platform_get_irq()
  2023-08-03  7:10 [PATCH -next] video: fbdev: goldfishfb: Do not check 0 for platform_get_irq() Zhu Wang
@ 2023-08-15 21:17 ` Helge Deller
  0 siblings, 0 replies; 2+ messages in thread
From: Helge Deller @ 2023-08-15 21:17 UTC (permalink / raw
  To: Zhu Wang, u.kleine-koenig, tzimmermann, sam, linux-fbdev,
	dri-devel

On 8/3/23 09:10, Zhu Wang wrote:
> 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 <wangzhu9@huawei.com>

applied.

Thanks!
Helge

> ---
>   drivers/video/fbdev/goldfishfb.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/video/fbdev/goldfishfb.c b/drivers/video/fbdev/goldfishfb.c
> index ef2528c3faa9..c3091ce26e5c 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;
>   	}
>


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-08-15 21:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-03  7:10 [PATCH -next] video: fbdev: goldfishfb: Do not check 0 for platform_get_irq() Zhu Wang
2023-08-15 21:17 ` Helge Deller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).