diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2016-09-17 15:54:13 +0000 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-11-01 17:41:19 -0700 |
commit | a29e52a6e66f4c0c895e7083e4bad2e7957f1fb5 (patch) | |
tree | 21359486616aec03a5930057d2f34c4a11ac5c92 | |
parent | 7c1c5413a7bdf1c9adc8d979521f1b8286366aef (diff) | |
download | linux-a29e52a6e66f4c0c895e7083e4bad2e7957f1fb5.tar.bz2 |
clk: mmp: mmp2: fix return value check in mmp2_clk_init()
Fix the retrn value check which testing the wrong variable
in mmp2_clk_init().
Fixes: 1ec770d92a62 ("clk: mmp: add mmp2 DT support for clock driver")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
-rw-r--r-- | drivers/clk/mmp/clk-of-mmp2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/mmp/clk-of-mmp2.c b/drivers/clk/mmp/clk-of-mmp2.c index 3a51fff1b0e7..9adaf48aea23 100644 --- a/drivers/clk/mmp/clk-of-mmp2.c +++ b/drivers/clk/mmp/clk-of-mmp2.c @@ -313,7 +313,7 @@ static void __init mmp2_clk_init(struct device_node *np) } pxa_unit->apmu_base = of_iomap(np, 1); - if (!pxa_unit->mpmu_base) { + if (!pxa_unit->apmu_base) { pr_err("failed to map apmu registers\n"); return; } |