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
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"