]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
drm/msm/dp: fix error check return value of irq_of_parse_and_map()
authorLv Ruyi <lv.ruyi@zte.com.cn>
Sun, 24 Apr 2022 03:24:18 +0000 (03:24 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 9 Jun 2022 08:30:04 +0000 (10:30 +0200)
[ Upstream commit e92d0d93f86699b7b25c7906613fdc374d66c8ca ]

The irq_of_parse_and_map() function returns 0 on failure, and does not
return an negative value.

Fixes: 8ede2ecc3e5e ("drm/msm/dp: Add DP compliance tests on Snapdragon Chipsets")
Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Lv Ruyi <lv.ruyi@zte.com.cn>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Patchwork: https://patchwork.freedesktop.org/patch/483176/
Link: https://lore.kernel.org/r/20220424032418.3173632-1-lv.ruyi@zte.com.cn
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/gpu/drm/msm/dp/dp_display.c

index 332065b882aff5b7e274258512f1c798c7a915bb..b3bfe9ac9d803231746d08ac14b1a95c82db8259 100644 (file)
@@ -1255,10 +1255,9 @@ int dp_display_request_irq(struct msm_dp *dp_display)
        dp = container_of(dp_display, struct dp_display_private, dp_display);
 
        dp->irq = irq_of_parse_and_map(dp->pdev->dev.of_node, 0);
-       if (dp->irq < 0) {
-               rc = dp->irq;
-               DRM_ERROR("failed to get irq: %d\n", rc);
-               return rc;
+       if (!dp->irq) {
+               DRM_ERROR("failed to get irq\n");
+               return -EINVAL;
        }
 
        rc = devm_request_irq(&dp->pdev->dev, dp->irq,