This is an automatic generated email to let you know that the following patch 
were queued:

Subject: media: qcom: venus: fix incorrect return value
Author:  Hans Verkuil <hverkuil-ci...@xs4all.nl>
Date:    Fri Oct 6 12:08:47 2023 +0200

'pd' can be NULL, and in that case it shouldn't be passed to
PTR_ERR. Fixes a smatch warning:

drivers/media/platform/qcom/venus/pm_helpers.c:873 vcodec_domains_get() warn: 
passing zero to 'PTR_ERR'

Signed-off-by: Hans Verkuil <hverkuil-ci...@xs4all.nl>
Reviewed-by: Bryan O'Donoghue <bryan.odonog...@linaro.org>

 drivers/media/platform/qcom/venus/pm_helpers.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

---

diff --git a/drivers/media/platform/qcom/venus/pm_helpers.c 
b/drivers/media/platform/qcom/venus/pm_helpers.c
index 48c9084bb4db..a1b127caa90a 100644
--- a/drivers/media/platform/qcom/venus/pm_helpers.c
+++ b/drivers/media/platform/qcom/venus/pm_helpers.c
@@ -870,7 +870,7 @@ static int vcodec_domains_get(struct venus_core *core)
                pd = dev_pm_domain_attach_by_name(dev,
                                                  res->vcodec_pmdomains[i]);
                if (IS_ERR_OR_NULL(pd))
-                       return PTR_ERR(pd) ? : -ENODATA;
+                       return pd ? PTR_ERR(pd) : -ENODATA;
                core->pmdomains[i] = pd;
        }
 

_______________________________________________
linuxtv-commits mailing list
linuxtv-commits@linuxtv.org
https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to