mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 20:32:04 +09:00
drm/mcde: Fix handling of platform_get_irq() error
[ Upstream commite2dae672a9] platform_get_irq() returns -ERRNO on error. In such case comparison to 0 would pass the check. Fixes:5fc537bfd0("drm/mcde: Add new driver for ST-Ericsson MCDE") 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-1-krzk@kernel.org Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
29f34feb38
commit
f61e9dbb56
@@ -410,8 +410,8 @@ static int mcde_probe(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
irq = platform_get_irq(pdev, 0);
|
||||
if (!irq) {
|
||||
ret = -EINVAL;
|
||||
if (irq < 0) {
|
||||
ret = irq;
|
||||
goto clk_disable;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user