diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2016-09-17 15:55:56 +0000 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-11-01 17:41:20 -0700 |
commit | 10f2bfb092e3b49000526c02cfe8b2abbbdbb752 (patch) | |
tree | e9c0b27310170fc5f4607bd60e6287e19bf3f8a9 /drivers/clk/mmp | |
parent | deab07261d54b4db7b627d38e0efac97f176c6d6 (diff) | |
download | linux-10f2bfb092e3b49000526c02cfe8b2abbbdbb752.tar.bz2 |
clk: mmp: pxa910: fix return value check in pxa910_clk_init()
Fix the retrn value check which testing the wrong variable
in pxa910_clk_init().
Fixes: 2bc61da9f7ff ("clk: mmp: add pxa910 DT support for clock driver")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/mmp')
-rw-r--r-- | drivers/clk/mmp/clk-of-pxa910.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/mmp/clk-of-pxa910.c b/drivers/clk/mmp/clk-of-pxa910.c index e22a67f76d93..64d1ef49caeb 100644 --- a/drivers/clk/mmp/clk-of-pxa910.c +++ b/drivers/clk/mmp/clk-of-pxa910.c @@ -282,7 +282,7 @@ static void __init pxa910_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; } @@ -294,7 +294,7 @@ static void __init pxa910_clk_init(struct device_node *np) } pxa_unit->apbcp_base = of_iomap(np, 3); - if (!pxa_unit->mpmu_base) { + if (!pxa_unit->apbcp_base) { pr_err("failed to map apbcp registers\n"); return; } |