Re: cvs commit: src/sys/dev/cfe cfe_console.c

2008-09-29 Thread John Baldwin
On Saturday 27 September 2008 11:54:06 pm Colin Percival wrote: > Warner Losh wrote: > > Change while (cond)\n\t\t; to while (cond)\n\t\tcontinue; since the > > former more explicitly tells the compiler that you want an empty loop. > > There are some lint programs that use this hint to avoid

Re: cvs commit: src/sys/dev/cfe cfe_console.c

2008-09-27 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> Colin Percival <[EMAIL PROTECTED]> writes: : Warner Losh wrote: : > Change while (cond)\n\t\t; to while (cond)\n\t\tcontinue; since the : > former more explicitly tells the compiler that you want an empty loop. : > There are some lint programs that

Re: cvs commit: src/sys/dev/cfe cfe_console.c

2008-09-27 Thread Colin Percival
Warner Losh wrote: Change while (cond)\n\t\t; to while (cond)\n\t\tcontinue; since the former more explicitly tells the compiler that you want an empty loop. There are some lint programs that use this hint to avoid generating warnings. In style(9) the example for (p = buf; *p !=

cvs commit: src/sys/dev/cfe cfe_console.c

2008-09-27 Thread Warner Losh
imp 2008-09-28 03:33:01 UTC FreeBSD src repository Modified files: sys/dev/cfe cfe_console.c Log: SVN rev 183424 on 2008-09-28 03:33:01Z by imp Change while (cond)\n\t\t; to while (cond)\n\t\tcontinue; since the former more explicitly tells the compiler that y

cvs commit: src/sys/dev/cfe cfe_console.c

2008-09-25 Thread Warner Losh
imp 2008-09-26 05:37:54 UTC FreeBSD src repository Modified files: sys/dev/cfe cfe_console.c Log: SVN rev 183376 on 2008-09-26 05:37:54Z by imp Catch up to latest tty, kdb and SYSINIT changes. Modeled after the dev/ofw changes, since this driver appears to ha

cvs commit: src/sys/dev/cfe cfe_console.c

2008-09-25 Thread Warner Losh
imp 2008-09-26 05:10:57 UTC FreeBSD src repository Modified files: sys/dev/cfe cfe_console.c Log: SVN rev 183374 on 2008-09-26 05:10:57Z by imp The Ultra2 never had a CFE console or CFE boot loader. Kill obvious cut-n-paste leftover. Revision Changes