From owner-svn-src-head@FreeBSD.ORG Mon May 12 13:32:24 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F1BF3593; Mon, 12 May 2014 13:32:24 +0000 (UTC) Received: from mail.turbocat.net (mail.turbocat.net [IPv6:2a01:4f8:d16:4514::2]) (using TLSv1.1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B6BDA265D; Mon, 12 May 2014 13:32:24 +0000 (UTC) Received: from laptop015.home.selasky.org (cm-176.74.213.204.customer.telag.net [176.74.213.204]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id A52AC1FE029; Mon, 12 May 2014 15:32:23 +0200 (CEST) Message-ID: <5370CD9A.1040409@selasky.org> Date: Mon, 12 May 2014 15:33:14 +0200 From: Hans Petter Selasky User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.1.0 MIME-Version: 1.0 To: Ian Lepore , svn-src-head@freebsd.org Subject: Re: svn commit: r265914 - head/sys/arm/arm References: <201405121308.s4CD8bNF027319@svn.freebsd.org> In-Reply-To: <201405121308.s4CD8bNF027319@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 May 2014 13:32:25 -0000 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