ACPI: Untangle a return statement for better readability
No functional change. Signed-off-by: Thomas Renninger <trenn@suse.de> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
Родитель
0d7614f09c
Коммит
f3946fb6e5
|
@ -304,8 +304,10 @@ int __init acpi_numa_init(void)
|
|||
|
||||
acpi_numa_arch_fixup();
|
||||
|
||||
if (cnt <= 0)
|
||||
return cnt ?: -ENOENT;
|
||||
if (cnt < 0)
|
||||
return cnt;
|
||||
else if (cnt == 0)
|
||||
return -ENOENT;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче