Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

cpu: clean up register_cpu func

This patch could reduce one branch in this function. Also
make the code more readble.

Signed-off-by: Alex Shi <alex.shi@linaro.org>
Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org>
To: linux-kernel@vger.kernel.org
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-pm@vger.kernel.org
Cc: Ulf Hansson <ulf.hansson@linaro.org>
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Alex Shi and committed by
Greg Kroah-Hartman
59fffa34 95da00e3

+6 -5
+6 -5
drivers/base/cpu.c
··· 371 371 if (cpu->hotpluggable) 372 372 cpu->dev.groups = hotplugable_cpu_attr_groups; 373 373 error = device_register(&cpu->dev); 374 - if (!error) 375 - per_cpu(cpu_sys_devices, num) = &cpu->dev; 376 - if (!error) 377 - register_cpu_under_node(num, cpu_to_node(num)); 374 + if (error) 375 + return error; 378 376 379 - return error; 377 + per_cpu(cpu_sys_devices, num) = &cpu->dev; 378 + register_cpu_under_node(num, cpu_to_node(num)); 379 + 380 + return 0; 380 381 } 381 382 382 383 struct device *get_cpu_device(unsigned cpu)