svn commit: r265914 - head/sys/arm/arm

Hans Petter Selasky hps at selasky.org
Mon May 12 13:32:25 UTC 2014


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



More information about the svn-src-head mailing list