From a2d05648c268a357baf1dd524f904966ec58ad1f Mon Sep 17 00:00:00 2001 From: Raviteja Tamatam Date: Mon, 7 Nov 2022 10:18:10 -0800 Subject: [PATCH] disp: msm: sde: fix error message in sde_crtc_opr_event_notify Fix error message arguments in sde_crtc_opr_event_notify function. Change-Id: Ibfb4b4a298bc9ec8128061a103ce6500ec1cce29 Signed-off-by: Raviteja Tamatam --- msm/sde/sde_crtc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msm/sde/sde_crtc.c b/msm/sde/sde_crtc.c index d91242b85a..62772ae0e4 100644 --- a/msm/sde/sde_crtc.c +++ b/msm/sde/sde_crtc.c @@ -3047,7 +3047,7 @@ void sde_crtc_opr_event_notify(struct drm_crtc *crtc) rc = sde_dspp_spr_read_opr_value(sde_crtc->mixers[i].hw_dspp, ¤t_opr_value[i]); if (rc) { - SDE_ERROR("failed to collect OPR %d", i, rc); + SDE_ERROR("failed to collect OPR idx: %d rc: %d\n", i, rc); continue; }