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

Commit 30989ef8 authored by Jordan Crouse's avatar Jordan Crouse
Browse files

clk: qcom: Fix compile warnings



Fix the following compiler warning(s) from gcc 6.1.1 with -Werror enabled:

 drivers/clk/qcom/mdss/mdss-pll.c:220:
   format '%d' expects a matching 'int' argument [-Werror=format=]
   pr_info("%d: MDSS pll label not specified\n");

Fixes: 0fd7ae3f ("clk:qcom: add mdss dsi and dp pll driver support")
Change-Id: Ic0dedbadb3533695fc7166c172946607e8ccb21f
Signed-off-by: default avatarJordan Crouse <jcrouse@codeaurora.org>
parent 80c6f68d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -229,7 +229,7 @@ static int mdss_pll_probe(struct platform_device *pdev)

	label = of_get_property(pdev->dev.of_node, "label", NULL);
	if (!label)
		pr_info("%d: MDSS pll label not specified\n");
		pr_info("MDSS pll label not specified\n");
	else
		pr_info("MDSS pll label = %s\n", label);