projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a29e52a
)
clk: mmp: pxa168: fix return value check in pxa168_clk_init()
author
Wei Yongjun
<weiyongjun1@huawei.com>
Sat, 17 Sep 2016 15:54:28 +0000
(15:54 +0000)
committer
Stephen Boyd
<sboyd@codeaurora.org>
Wed, 2 Nov 2016 00:41:20 +0000
(17:41 -0700)
Fix the retrn value check which testing the wrong variable
in pxa168_clk_init().
Fixes: ab08aefcd12d ("clk: mmp: add pxa168 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-pxa168.c
patch
|
blob
|
history
diff --git
a/drivers/clk/mmp/clk-of-pxa168.c
b/drivers/clk/mmp/clk-of-pxa168.c
index 87f2317b2a005aca6aed18a39de7509010edd19e..f110c02e83cb6142c0653357f4c13d05b0f17018 100644
(file)
--- a/
drivers/clk/mmp/clk-of-pxa168.c
+++ b/
drivers/clk/mmp/clk-of-pxa168.c
@@
-262,7
+262,7
@@
static void __init pxa168_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;
}