aboutsummaryrefslogtreecommitdiff
path: root/sys/netatm/sigpvc
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2002-03-20 08:00:54 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2002-03-20 08:00:54 +0000
commit03d1b8bc94b068f7f633f26e912e9fbbe3f31687 (patch)
tree2a7f34126a185f91f1613cd64a3874d01b325fe5 /sys/netatm/sigpvc
parent89c9a483526f9340e86daccfb8a575cf2d153821 (diff)
Remove __P.
Notes
Notes: svn path=/head/; revision=92766
Diffstat (limited to 'sys/netatm/sigpvc')
-rw-r--r--sys/netatm/sigpvc/sigpvc_if.c22
-rw-r--r--sys/netatm/sigpvc/sigpvc_var.h4
2 files changed, 13 insertions, 13 deletions
diff --git a/sys/netatm/sigpvc/sigpvc_if.c b/sys/netatm/sigpvc/sigpvc_if.c
index 7a0275079809..95f588d4ba90 100644
--- a/sys/netatm/sigpvc/sigpvc_if.c
+++ b/sys/netatm/sigpvc/sigpvc_if.c
@@ -85,14 +85,14 @@ struct sp_info sigpvc_vcpool = {
/*
* Local functions
*/
-static int sigpvc_start __P((void));
-static int sigpvc_stop __P((void));
-static int sigpvc_attach __P((struct sigmgr *, struct atm_pif *));
-static int sigpvc_detach __P((struct atm_pif *));
-static int sigpvc_setup __P((Atm_connvc *, int *));
-static int sigpvc_release __P((struct vccb *, int *));
-static int sigpvc_free __P((struct vccb *));
-static int sigpvc_ioctl __P((int, caddr_t, caddr_t));
+static int sigpvc_start(void);
+static int sigpvc_stop(void);
+static int sigpvc_attach(struct sigmgr *, struct atm_pif *);
+static int sigpvc_detach(struct atm_pif *);
+static int sigpvc_setup(Atm_connvc *, int *);
+static int sigpvc_release(struct vccb *, int *);
+static int sigpvc_free(struct vccb *);
+static int sigpvc_ioctl(int, caddr_t, caddr_t);
/*
* Local variables
@@ -698,8 +698,8 @@ sigpvc_ioctl(code, data, arg1)
*
*******************************************************************
*/
-static int sigpvc_doload __P((void));
-static int sigpvc_dounload __P((void));
+static int sigpvc_doload(void);
+static int sigpvc_dounload(void);
/*
* Generic module load processing
@@ -858,7 +858,7 @@ sigpvc_mod(lkmtp, cmd, ver)
*
*******************************************************************
*/
-static void sigpvc_doload __P((void *));
+static void sigpvc_doload(void *);
SYSINIT(atmsigpvc, SI_SUB_PROTO_END, SI_ORDER_ANY, sigpvc_doload, NULL)
diff --git a/sys/netatm/sigpvc/sigpvc_var.h b/sys/netatm/sigpvc/sigpvc_var.h
index 3488a0f303ed..7e6af34b763a 100644
--- a/sys/netatm/sigpvc/sigpvc_var.h
+++ b/sys/netatm/sigpvc/sigpvc_var.h
@@ -87,8 +87,8 @@ struct sigpvc_vccb {
/* sigpvc_if.c */
/* sigpvc_subr.c */
-int sigpvc_create_pvc __P((struct sigpvc *, Atm_connvc *, int *));
-void sigpvc_close_vcc __P((struct vccb *));
+int sigpvc_create_pvc(struct sigpvc *, Atm_connvc *, int *);
+void sigpvc_close_vcc(struct vccb *);
#endif /* _KERNEL */