diff options
author | Axel Lin <axel.lin@ingics.com> | 2016-09-10 11:47:30 +0800 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-11-01 17:44:09 -0700 |
commit | 74a484ced26d802ce7fbca86f3205e1c69e27269 (patch) | |
tree | 3c5e741a20154e725751d398bc03a7171977d303 | |
parent | 42134fa2b70e2b70c600bf87fbe5ea5faa34ad63 (diff) | |
download | linux-74a484ced26d802ce7fbca86f3205e1c69e27269.tar.bz2 |
clk: qcom: lcc-ipq806x: Fixup overriding val in regmap_read call
Drop the assignment of regmap_read return code to val, so the code checks
the value read.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
-rw-r--r-- | drivers/clk/qcom/lcc-ipq806x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/qcom/lcc-ipq806x.c b/drivers/clk/qcom/lcc-ipq806x.c index db3998e5e2d8..977e98eadbeb 100644 --- a/drivers/clk/qcom/lcc-ipq806x.c +++ b/drivers/clk/qcom/lcc-ipq806x.c @@ -443,7 +443,7 @@ static int lcc_ipq806x_probe(struct platform_device *pdev) return PTR_ERR(regmap); /* Configure the rate of PLL4 if the bootloader hasn't already */ - val = regmap_read(regmap, 0x0, &val); + regmap_read(regmap, 0x0, &val); if (!val) clk_pll_configure_sr(&pll4, regmap, &pll4_config, true); /* Enable PLL4 source on the LPASS Primary PLL Mux */ |