diff options
| author | Alex Shi <alex.shi@linaro.org> | 2016-08-25 04:42:39 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-08-31 09:19:55 -0400 |
| commit | 59fffa34069d80662b41438b11130771b4e2a897 (patch) | |
| tree | 0e41627337e4c881f143ee2ccc97a4e47ab5e147 /drivers/base | |
| parent | 95da00e35acf92bb5d39f6f08267de0c1a5c8885 (diff) | |
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>
Diffstat (limited to 'drivers/base')
| -rw-r--r-- | drivers/base/cpu.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/base/cpu.c b/drivers/base/cpu.c index 691eeea2f19a..4c28e1a09786 100644 --- a/drivers/base/cpu.c +++ b/drivers/base/cpu.c | |||
| @@ -371,12 +371,13 @@ int register_cpu(struct cpu *cpu, int num) | |||
| 371 | if (cpu->hotpluggable) | 371 | if (cpu->hotpluggable) |
| 372 | cpu->dev.groups = hotplugable_cpu_attr_groups; | 372 | cpu->dev.groups = hotplugable_cpu_attr_groups; |
| 373 | error = device_register(&cpu->dev); | 373 | error = device_register(&cpu->dev); |
| 374 | if (!error) | 374 | if (error) |
| 375 | per_cpu(cpu_sys_devices, num) = &cpu->dev; | 375 | return error; |
| 376 | if (!error) | ||
| 377 | register_cpu_under_node(num, cpu_to_node(num)); | ||
| 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 | struct device *get_cpu_device(unsigned cpu) | 383 | struct device *get_cpu_device(unsigned cpu) |
