svn commit: r240549 - head/sys/arm/tegra

Alexey Dokuchaev danfe at FreeBSD.org
Sun Sep 16 09:28:19 UTC 2012


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


More information about the svn-src-all mailing list