From owner-svn-src-head@FreeBSD.ORG Sun Sep 16 09:28:19 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 015DD1065672; Sun, 16 Sep 2012 09:28:18 +0000 (UTC) Date: Sun, 16 Sep 2012 09:28:18 +0000 From: Alexey Dokuchaev To: Andrew Turner Message-ID: <20120916092818.GA81952@FreeBSD.org> References: <201209160755.q8G7tnMH036332@svn.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <201209160755.q8G7tnMH036332@svn.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r240549 - head/sys/arm/tegra X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 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: Sun, 16 Sep 2012 09:28:19 -0000 On Sun, Sep 16, 2012 at 07:55:49AM +0000, Andrew Turner wrote: > New Revision: 240549 > URL: http://svn.freebsd.org/changeset/base/240549 > > Log: > The cpu_reset function is noreturn, make sure this is true on Tegra 2. > While here fix a typo. > > + > + while(1); I thought preferred and more style(9) compliant way to code this is: for (;;) continue; ./danfe