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

Chris Rees crees at FreeBSD.org
Sun Sep 16 09:38:36 UTC 2012


On 16 September 2012 10:28, Alexey Dokuchaev <danfe at freebsd.org> wrote:
> 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;

Actually:

for (;;)
        ;

Chris


More information about the svn-src-head mailing list