Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1473283 > unrolled thread

Re: [PATCH 1/4] cpu: clean up register_cpu func

Started byAlex Shi <alex.shi@linaro.org>
First post2016-08-31 12:50 +0200
Last post2016-08-31 15:20 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH 1/4] cpu: clean up register_cpu func Alex Shi <alex.shi@linaro.org> - 2016-08-31 12:50 +0200
    Re: [PATCH 1/4] cpu: clean up register_cpu func Greg Kroah-Hartman <gregkh@linuxfoundation.org> - 2016-08-31 15:20 +0200

#1473283 — Re: [PATCH 1/4] cpu: clean up register_cpu func

FromAlex Shi <alex.shi@linaro.org>
Date2016-08-31 12:50 +0200
SubjectRe: [PATCH 1/4] cpu: clean up register_cpu func
Message-ID<scbfH-1kx-3@gated-at.bofh.it>
Hi,

Is there any concern on this patch?

Regards
Alex

On 08/25/2016 04:42 PM, Alex Shi wrote:
> 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>
> ---
>  drivers/base/cpu.c | 11 ++++++-----
>  1 file changed, 6 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/base/cpu.c b/drivers/base/cpu.c
> index 691eeea..4c28e1a 100644
> --- a/drivers/base/cpu.c
> +++ b/drivers/base/cpu.c
> @@ -371,12 +371,13 @@ int register_cpu(struct cpu *cpu, int num)
>  	if (cpu->hotpluggable)
>  		cpu->dev.groups = hotplugable_cpu_attr_groups;
>  	error = device_register(&cpu->dev);
> -	if (!error)
> -		per_cpu(cpu_sys_devices, num) = &cpu->dev;
> -	if (!error)
> -		register_cpu_under_node(num, cpu_to_node(num));
> +	if (error)
> +		return error;
>  
> -	return error;
> +	per_cpu(cpu_sys_devices, num) = &cpu->dev;
> +	register_cpu_under_node(num, cpu_to_node(num));
> +
> +	return 0;
>  }
>  
>  struct device *get_cpu_device(unsigned cpu)
> 

[toc] | [next] | [standalone]


#1473458

FromGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Date2016-08-31 15:20 +0200
Message-ID<scdAS-2Rr-23@gated-at.bofh.it>
In reply to#1473283
On Wed, Aug 31, 2016 at 06:45:35PM +0800, Alex Shi wrote:
> Hi,
> 
> Is there any concern on this patch?

For minor cleanup patches like this, relax, they will be reviewed
eventually...

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web