Date: Mon, 12 May 2014 13:08:37 +0000 (UTC) From: Ian Lepore <ian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r265914 - head/sys/arm/arm Message-ID: <201405121308.s4CD8bNF027319@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405121308.s4CD8bNF027319>