Re: [PATCH] old declaration ritchie style fix in arch/parisc/math-emu/

2007-06-04 Thread Matthew Wilcox
On Mon, Jun 04, 2007 at 08:38:08PM +0200, Yoann Padioleau wrote: > > Use consistent function ANSI declaration style. This code is copied from HPUX and we'd prefer to not change it. Thanks, though. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message

[PATCH] old declaration ritchie style fix in arch/parisc/math-emu/

2007-06-04 Thread Yoann Padioleau
Use consistent function ANSI declaration style. Signed-off-by: Yoann Padioleau <[EMAIL PROTECTED]> dfadd.c | 10 +- fmpyfadd.c| 30 ++ fpudispatch.c | 22 ++ 3 files changed, 29 insertions(+), 33 deletions(-) diff --

Re: [PATCH] old declaration ritchie style fix

2007-05-25 Thread Stefan Richter
Jiri Slaby wrote: > Yoann Padioleau napsal(a): >> static int >> -receivepkt (target, buffer) >> -int target; >> -unsigned char *buffer; >> +receivepkt (int target, unsigned char *buffer) > > When you are at it, you can also get rid of bsd return-type-on-its-own-line > style return-type-o

Re: [PATCH] old declaration ritchie style fix

2007-05-25 Thread Jiri Slaby
Yoann Padioleau napsal(a): > Use consistent function declaration style. > > Note that this file is not compiled by make allyesconfig > and its configuration option appears nowhere. Perhaps > it would be better to remove the file. I don't know where were you looking, but it is referenced in both M

[PATCH] old declaration ritchie style fix

2007-05-24 Thread Yoann Padioleau
Use consistent function declaration style. Note that this file is not compiled by make allyesconfig and its configuration option appears nowhere. Perhaps it would be better to remove the file. --- atari_pamsnet.c | 62 +++- 1 file changed,