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

Commit eeee65e3 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: mdss: do not fail DSI probe if clk_get fails for MMSS AHB clock"

parents 8fd93d13 89f0ec0d
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -67,10 +67,9 @@ int mdss_dsi_clk_init(struct platform_device *pdev,
	if (ctrl->panel_data.panel_info.type == MIPI_CMD_PANEL) {
		ctrl->mmss_misc_ahb_clk = clk_get(dev, "core_mmss_clk");
		if (IS_ERR(ctrl->mmss_misc_ahb_clk)) {
			rc = PTR_ERR(ctrl->mmss_misc_ahb_clk);
			pr_err("%s: Unable to get mmss misc ahb clk. rc=%d\n",
				__func__, rc);
			goto mdss_dsi_clk_err;
			ctrl->mmss_misc_ahb_clk = NULL;
			pr_info("%s: Unable to get mmss misc ahb clk\n",
				__func__);
		}
	}