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

Commit 4f36fc63 authored by Ping Li's avatar Ping Li
Browse files

msm: mdss: Change PP loggings from warning to debug



Some of the post-processing features might not be available for
external displays. PP driver was printing them as pr_warn which
floods the kernel logs. This change updates these logs from
warning to debug to remove unnecessary logging.

Change-Id: Ic1dde42ccc84e13f06db33ddbf679a211726ff80
Signed-off-by: default avatarPing Li <pingli@codeaurora.org>
parent 0a2266d2
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2064,7 +2064,7 @@ int mdss_mdp_pp_resume(struct msm_fb_data_type *mfd)
	}

	if (!mdss_mdp_mfd_valid_dspp(mfd)) {
		pr_warn("PP not supported on display num %d hw config\n",
		pr_debug("PP not supported on display num %d hw config\n",
			mfd->index);
		return -EPERM;
	}
@@ -3088,7 +3088,7 @@ static int mdss_mdp_limited_lut_igc_config(struct msm_fb_data_type *mfd)
		return -EINVAL;

	if (!mdss_mdp_mfd_valid_dspp(mfd)) {
		pr_warn("IGC not supported on display num %d hw configuration\n",
		pr_debug("IGC not supported on display num %d hw configuration\n",
			mfd->index);
		return 0;
	}
@@ -3663,7 +3663,7 @@ static int mdss_mdp_panel_default_dither_config(struct msm_fb_data_type *mfd,
	struct mdp_dither_data_v1_7 dither_data;

	if (!mdss_mdp_mfd_valid_dspp(mfd)) {
		pr_warn("dither config not supported on display num %d\n",
		pr_debug("dither config not supported on display num %d\n",
			mfd->index);
		return 0;
	}