From e96c1e444e8390aafc4f557247ca06dd033fb0f7 Mon Sep 17 00:00:00 2001 From: Santosh Kumar Aenugu Date: Fri, 23 Apr 2021 12:37:18 -0700 Subject: [PATCH] disp: msm: dsi: reduce log level in demura parsing Currently, the demura parsing has info logs, this change reduces the log level to debug for all the parsing logs. Change-Id: Icd9e73a7788cb01e09068e4d0957bc1e11a329da Signed-off-by: Santosh Kumar Aenugu --- msm/dsi/dsi_display.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/msm/dsi/dsi_display.c b/msm/dsi/dsi_display.c index 4386d52252..0f99ff1f67 100644 --- a/msm/dsi/dsi_display.c +++ b/msm/dsi/dsi_display.c @@ -630,19 +630,19 @@ static void dsi_display_parse_demura_data(struct dsi_display *display) display->panel_id = ~0x0; if (display->fw) { - DSI_INFO("FW definition unsupported for Demura panel data\n"); + DSI_DEBUG("FW definition unsupported for Demura panel data\n"); return; } rc = of_property_read_u64(display->pdev->dev.of_node, "qcom,demura-panel-id", &display->panel_id); if (rc) { - DSI_INFO("No panel ID is present for this display\n"); + DSI_DEBUG("No panel ID is present for this display\n"); } else if (!display->panel_id) { - DSI_INFO("Dummy panel ID node present for this display\n"); + DSI_DEBUG("Dummy panel ID node present for this display\n"); display->panel_id = ~0x0; } else { - DSI_INFO("panel id found: %lx\n", display->panel_id); + DSI_DEBUG("panel id found: %lx\n", display->panel_id); } }