Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a60c6740 authored by Sravan Kumar D.V.N's avatar Sravan Kumar D.V.N
Browse files

mdss: msm: Avoid excessive failure logs in igc config



Logging the error in IGC config only once to avoid excessive
logging and resulting stability issues.

CRs-fixed: 993241

Change-Id: I318fc9324e9e27295525d3d3bda5f217716c5b2a
Signed-off-by: default avatarSravan Kumar D.V.N <sravank1@codeaurora.org>
parent 60d40c19
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1763,7 +1763,7 @@ static int pp_igc_set_config(char __iomem *base_addr,
	lut_cfg_data = (struct mdp_igc_lut_data *) cfg_data;
	if (lut_cfg_data->version != mdp_igc_v1_7 ||
	    !lut_cfg_data->cfg_payload) {
		pr_err("invalid igc version %d payload %p\n",
		pr_err_once("invalid igc version %d payload %p\n",
		       lut_cfg_data->version, lut_cfg_data->cfg_payload);
		return -EINVAL;
	}