The argument clear of the function dpu_core_irq_read() is always true.
Remove it.
Reviewed-by: Abhinav Kumar <quic_abhinavk@quicinc.com>
Reviewed-by: Stephen Boyd <swboyd@chromium.org>
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Patchwork: https://patchwork.freedesktop.org/patch/474697/
Link: https://lore.kernel.org/r/20220217043148.480898-3-dmitry.baryshkov@linaro.org
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
  * dpu_core_irq_read - IRQ helper function for reading IRQ status
  * @dpu_kms:           DPU handle
  * @irq_idx:           irq index
- * @clear:             True to clear the irq after read
  * @return:            non-zero if irq detected; otherwise no irq detected
  */
 u32 dpu_core_irq_read(
                struct dpu_kms *dpu_kms,
-               int irq_idx,
-               bool clear);
+               int irq_idx);
 
 /**
  * dpu_core_irq_register_callback - For registering callback function on IRQ
 
                        wait_info);
 
        if (ret <= 0) {
-               irq_status = dpu_core_irq_read(phys_enc->dpu_kms,
-                               irq->irq_idx, true);
+               irq_status = dpu_core_irq_read(phys_enc->dpu_kms, irq->irq_idx);
                if (irq_status) {
                        unsigned long flags;
 
 
        wmb();
 }
 
-u32 dpu_core_irq_read(struct dpu_kms *dpu_kms, int irq_idx, bool clear)
+u32 dpu_core_irq_read(struct dpu_kms *dpu_kms, int irq_idx)
 {
        struct dpu_hw_intr *intr = dpu_kms->hw_intr;
        int reg_idx;
        intr_status = DPU_REG_READ(&intr->hw,
                        dpu_intr_set[reg_idx].status_off) &
                DPU_IRQ_MASK(irq_idx);
-       if (intr_status && clear)
+       if (intr_status)
                DPU_REG_WRITE(&intr->hw, dpu_intr_set[reg_idx].clr_off,
                                intr_status);