Эх сурвалжийг харах

ARM: hisi: fix error return code in hip04_smp_init()

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>
Wei Yongjun 8 жил өмнө
parent
commit
f147140c7f

+ 2 - 0
arch/arm/mach-hisi/platmcpm.c

@@ -279,6 +279,8 @@ static int __init hip04_smp_init(void)
 					 &hip04_boot_method[0], 4);
 					 &hip04_boot_method[0], 4);
 	if (ret)
 	if (ret)
 		goto err;
 		goto err;
+
+	ret = -ENODEV;
 	np_sctl = of_find_compatible_node(NULL, NULL, "hisilicon,sysctrl");
 	np_sctl = of_find_compatible_node(NULL, NULL, "hisilicon,sysctrl");
 	if (!np_sctl)
 	if (!np_sctl)
 		goto err;
 		goto err;