Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 May 2014 15:33:14 +0200
From:      Hans Petter Selasky <hps@selasky.org>
To:        Ian Lepore <ian@FreeBSD.org>, svn-src-head@freebsd.org
Subject:   Re: svn commit: r265914 - head/sys/arm/arm
Message-ID:  <5370CD9A.1040409@selasky.org>
In-Reply-To: <201405121308.s4CD8bNF027319@svn.freebsd.org>
References:  <201405121308.s4CD8bNF027319@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On 05/12/14 15:08, Ian Lepore wrote:
> Author: ian
> Date: Mon May 12 13:08:37 2014
> New Revision: 265914
> URL: http://svnweb.freebsd.org/changeset/base/265914
>
> Log:
>    Cleanup some style nits.
>
> Modified:
>    head/sys/arm/arm/machdep.c
>
> Modified: head/sys/arm/arm/machdep.c
> ==============================================================================
> --- head/sys/arm/arm/machdep.c	Mon May 12 13:05:03 2014	(r265913)
> +++ head/sys/arm/arm/machdep.c	Mon May 12 13:08:37 2014	(r265914)
> @@ -424,24 +424,20 @@ void
>   cpu_idle(int busy)
>   {
>   	
> -	CTR2(KTR_SPARE2, "cpu_idle(%d) at %d",
> -	    busy, curcpu);
> +	CTR2(KTR_SPARE2, "cpu_idle(%d) at %d", busy, curcpu);
>   	spinlock_enter();
>   #ifndef NO_EVENTTIMERS
> -	if (!busy) {
> +	if (!busy)
>   		cpu_idleclock();
> -	}
>   #endif
>   	if (!sched_runnable())
>   		cpu_sleep(0);
>   #ifndef NO_EVENTTIMERS
> -	if (!busy) {
> +	if (!busy)
>   		cpu_activeclock();
> -	}
>   #endif
>   	spinlock_exit();
> -	CTR2(KTR_SPARE2, "cpu_idle(%d) at %d done",
> -	    busy, curcpu);
> +	CTR2(KTR_SPARE2, "cpu_idle(%d) at %d done", busy, curcpu);
>   }
>
>   int
>

Thanks!

Don't forget to MFC, if any.

--HPS




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?5370CD9A.1040409>