Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/lkm/arch/mac68k/iwm ANSIfy



details:   https://anonhg.NetBSD.org/src/rev/984acb21768e
branches:  trunk
changeset: 551412:984acb21768e
user:      jdolecek <jdolecek%NetBSD.org@localhost>
date:      Sat Sep 06 13:20:41 2003 +0000

description:
ANSIfy

diffstat:

 sys/lkm/arch/mac68k/iwm/iwm_mod.c |  15 ++++++---------
 1 files changed, 6 insertions(+), 9 deletions(-)

diffs (44 lines):

diff -r 7ee8e258c82d -r 984acb21768e sys/lkm/arch/mac68k/iwm/iwm_mod.c
--- a/sys/lkm/arch/mac68k/iwm/iwm_mod.c Sat Sep 06 13:19:51 2003 +0000
+++ b/sys/lkm/arch/mac68k/iwm/iwm_mod.c Sat Sep 06 13:20:41 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: iwm_mod.c,v 1.6 2002/09/06 13:18:43 gehenna Exp $      */
+/*     $NetBSD: iwm_mod.c,v 1.7 2003/09/06 13:20:41 jdolecek Exp $     */
 
 /*
  * Copyright (c) 1997, 1998 Hauke Fath.  All rights reserved.
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: iwm_mod.c,v 1.6 2002/09/06 13:18:43 gehenna Exp $");
+__KERNEL_RCSID(0, "$NetBSD: iwm_mod.c,v 1.7 2003/09/06 13:20:41 jdolecek Exp $");
 
 #include <sys/param.h>
 #include <sys/ioctl.h>
@@ -45,10 +45,10 @@
 #include <sys/errno.h>
 
 /* The module entry */
-int iwmfd_lkmentry __P((struct lkm_table *lkmtp, int cmd, int ver));
+int iwmfd_lkmentry(struct lkm_table *lkmtp, int cmd, int ver);
 
-extern int fd_mod_init __P((void));
-extern void fd_mod_free __P((void));
+extern int fd_mod_init(void);
+extern void fd_mod_free(void);
 
 extern const struct bdevsw fd_bdevsw;
 extern const struct cdevsw fd_cdevsw;
@@ -61,10 +61,7 @@
  * External entry point; should generally match name of .o file.
  */
 int
-iwmfd_lkmentry (lkmtp, cmd, ver)
-       struct lkm_table *lkmtp;                  
-       int cmd;
-       int ver;
+iwmfd_lkmentry (struct lkm_table *lkmtp, int cmd, int ver)
 {
        int error = 0;
 



Home | Main Index | Thread Index | Old Index