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

Commit ad5cc5f9 authored by Rahul Sharma's avatar Rahul Sharma
Browse files

drm/msm: change log level in dsi panel and dp



Change log level of the supply entry check in dp_parser_get_vreg()
and the parsing qsync features check in  dsi_panel_get().

Change-Id: I720b4cd6947bdcabed3b547e1c95ca876958438a
Signed-off-by: default avatarRahul Sharma <rahsha@codeaurora.org>
parent 0645bbde
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
/*
 * Copyright (c) 2012-2019, The Linux Foundation. All rights reserved.
 * Copyright (c) 2012-2020, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -457,7 +457,7 @@ static int dp_parser_regulator(struct dp_parser *parser)
	struct platform_device *pdev = parser->pdev;

	/* Parse the regulator information */
	for (i = DP_CORE_PM; i < DP_MAX_PM; i++) {
	for (i = DP_CORE_PM; i <= DP_PHY_PM; i++) {
		rc = dp_parser_get_vreg(parser, i);
		if (rc) {
			pr_err("get_dt_vreg_data failed for %s. rc=%d\n",
+1 −1
Original line number Diff line number Diff line
@@ -3289,7 +3289,7 @@ struct dsi_panel *dsi_panel_get(struct device *parent,

	rc = dsi_panel_parse_qsync_caps(panel, of_node);
	if (rc)
		pr_err("failed to parse qsync features, rc=%d\n", rc);
		pr_debug("failed to parse qsync features, rc=%d\n", rc);

	/* allow qsync support only if DFPS is with VFP approach */
	if ((panel->dfps_caps.dfps_support) &&