projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7c1c541
)
clk: mmp: mmp2: fix return value check in mmp2_clk_init()
author
Wei Yongjun
<weiyongjun1@huawei.com>
Sat, 17 Sep 2016 15:54:13 +0000
(15:54 +0000)
committer
Stephen Boyd
<sboyd@codeaurora.org>
Wed, 2 Nov 2016 00:41:19 +0000
(17:41 -0700)
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>
drivers/clk/mmp/clk-of-mmp2.c
patch
|
blob
|
history
diff --git
a/drivers/clk/mmp/clk-of-mmp2.c
b/drivers/clk/mmp/clk-of-mmp2.c
index
3a51fff
..
9adaf48
100644
(file)
--- 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->
m
pmu_base) {
+ if (!pxa_unit->
a
pmu_base) {
pr_err("failed to map apmu registers\n");
return;
}