Fixes coccicheck warning:

drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys_vid.c:242:48-49: WARNING 
comparing pointer to 0
drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys_vid.c:562:25-26: WARNING 
comparing pointer to 0
drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys_vid.c:562:48-49: WARNING 
comparing pointer to 0

Reported-by: Hulk Robot <[email protected]>
Signed-off-by: Zheng Bin <[email protected]>
---
 drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys_vid.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys_vid.c 
b/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys_vid.c
index c71c18d..b5a4905 100644
--- a/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys_vid.c
+++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys_vid.c
@@ -239,7 +239,7 @@ static void dpu_encoder_phys_vid_setup_timing_engine(
        struct dpu_hw_intf_cfg intf_cfg = { 0 };

        if (!phys_enc->hw_ctl->ops.setup_intf_cfg) {
-               DPU_ERROR("invalid encoder %d\n", phys_enc != 0);
+               DPU_ERROR("invalid encoder %d\n", phys_enc != NULL);
                return;
        }

@@ -559,7 +559,7 @@ static void dpu_encoder_phys_vid_disable(struct 
dpu_encoder_phys *phys_enc)

        if (!phys_enc->hw_intf) {
                DPU_ERROR("invalid hw_intf %d hw_ctl %d\n",
-                               phys_enc->hw_intf != 0, phys_enc->hw_ctl != 0);
+                               phys_enc->hw_intf != NULL, phys_enc->hw_ctl != 
NULL);
                return;
        }

--
2.7.4

_______________________________________________
Freedreno mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/freedreno

Reply via email to