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:
c1ae3cf
)
ARM: hisi: fix error return code in hip04_smp_init()
author
Wei Yongjun
<weiyongjun1@huawei.com>
Sun, 5 Feb 2017 16:32:55 +0000
(16:32 +0000)
committer
Wei Xu
<xuwei5@hisilicon.com>
Tue, 28 Mar 2017 14:30:54 +0000
(15:30 +0100)
Fix to return error code -ENODEV from the of_find_compatible_node()
error handling case instead of 0, as done elsewhere in this function.
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Wei Xu <xuwei5@hisilicon.com>
arch/arm/mach-hisi/platmcpm.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-hisi/platmcpm.c
b/arch/arm/mach-hisi/platmcpm.c
index
a6c1176
..
f66815c
100644
(file)
--- a/
arch/arm/mach-hisi/platmcpm.c
+++ b/
arch/arm/mach-hisi/platmcpm.c
@@
-279,6
+279,8
@@
static int __init hip04_smp_init(void)
&hip04_boot_method[0], 4);
if (ret)
goto err;
+
+ ret = -ENODEV;
np_sctl = of_find_compatible_node(NULL, NULL, "hisilicon,sysctrl");
if (!np_sctl)
goto err;