From 1d7747db8171790e81242a24c36f16c07d78cd75 Mon Sep 17 00:00:00 2001 From: Ayushi Makhija Date: Tue, 13 Dec 2022 16:28:03 +0530 Subject: [PATCH] disp: msm: dsi: Correct typo in qcom,bl-dsc-cmd-state property name DCS is misspelled as DSC in qcom,bl-dsc-cmd-state property. Correct it as qcom,bl-dcs-cmd-state to avoid confusion between display command set and display stream compression. Change-Id: I9813574d55610738259d2cdf2a66c5857a83f821 Signed-off-by: Ayushi Makhija --- msm/dsi/dsi_panel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/msm/dsi/dsi_panel.c b/msm/dsi/dsi_panel.c index 533bf194..7000618e 100644 --- a/msm/dsi/dsi_panel.c +++ b/msm/dsi/dsi_panel.c @@ -2556,13 +2556,13 @@ static int dsi_panel_parse_bl_config(struct dsi_panel *panel) panel->bl_config.bl_inverted_dbv = utils->read_bool(utils->data, "qcom,mdss-dsi-bl-inverted-dbv"); - state = utils->get_property(utils->data, "qcom,bl-dsc-cmd-state", NULL); + state = utils->get_property(utils->data, "qcom,bl-dcs-cmd-state", NULL); if (!state || !strcmp(state, "dsi_hs_mode")) panel->bl_config.lp_mode = false; else if (!strcmp(state, "dsi_lp_mode")) panel->bl_config.lp_mode = true; else - DSI_ERR("bl-dsc-cmd-state command state unrecognized-%s\n", + DSI_ERR("bl-dcs-cmd-state command state unrecognized-%s\n", state); if (panel->bl_config.type == DSI_BACKLIGHT_PWM) {