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

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

Merge "msm: msm_bus: Correct Error string while reading Clients pdata"

parents df739202 aaf0ffc2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -173,7 +173,7 @@ struct msm_bus_scale_pdata *msm_bus_cl_get_pdata(struct platform_device *pdev)
	of_node = pdev->dev.of_node;
	pdata = get_pdata(pdev, of_node);
	if (!pdata) {
		pr_err("Error getting bus pdata!\n");
		pr_err("client has to provide missing entry for successful registration\n");
		return NULL;
	}

@@ -214,7 +214,7 @@ struct msm_bus_scale_pdata *msm_bus_pdata_from_node(

	pdata = get_pdata(pdev, of_node);
	if (!pdata) {
		pr_err("Error getting bus pdata!\n");
		pr_err("client has to provide missing entry for successful registration\n");
		return NULL;
	}