projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e2dae67
)
drm/tve200: Fix handling of platform_get_irq() error
author
Krzysztof Kozlowski
<krzk@kernel.org>
Thu, 27 Aug 2020 07:11:07 +0000
(09:11 +0200)
committer
Sam Ravnborg
<sam@ravnborg.org>
Sat, 17 Oct 2020 07:33:01 +0000
(09:33 +0200)
platform_get_irq() returns -ERRNO on error. In such case comparison
to 0 would pass the check.
Fixes:
179c02fe90a4
("drm/tve200: Add new driver for TVE200")
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Link:
https://patchwork.freedesktop.org/patch/msgid/20200827071107.27429-2-krzk@kernel.org
drivers/gpu/drm/tve200/tve200_drv.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/tve200/tve200_drv.c
b/drivers/gpu/drm/tve200/tve200_drv.c
index
c3aa39b
..
b5259cb
100644
(file)
--- a/
drivers/gpu/drm/tve200/tve200_drv.c
+++ b/
drivers/gpu/drm/tve200/tve200_drv.c
@@
-200,8
+200,8
@@
static int tve200_probe(struct platform_device *pdev)
}
irq = platform_get_irq(pdev, 0);
- if (
!irq
) {
- ret =
-EINVAL
;
+ if (
irq < 0
) {
+ ret =
irq
;
goto clk_disable;
}