diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/arch/alpha/tc/sfb.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/alpha/tc/sfb.c')
-rw-r--r-- | sys/arch/alpha/tc/sfb.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/sys/arch/alpha/tc/sfb.c b/sys/arch/alpha/tc/sfb.c index 3d06f9165ff..e4498562ff2 100644 --- a/sys/arch/alpha/tc/sfb.c +++ b/sys/arch/alpha/tc/sfb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sfb.c,v 1.12 2001/02/01 18:05:30 art Exp $ */ +/* $OpenBSD: sfb.c,v 1.13 2002/03/14 01:26:28 millert Exp $ */ /* $NetBSD: sfb.c,v 1.7 1996/12/05 01:39:44 cgd Exp $ */ /* @@ -53,11 +53,11 @@ #include <machine/pte.h> #ifdef __BROKEN_INDIRECT_CONFIG -int sfbmatch __P((struct device *, void *, void *)); +int sfbmatch(struct device *, void *, void *); #else -int sfbmatch __P((struct device *, struct cfdata *, void *)); +int sfbmatch(struct device *, struct cfdata *, void *); #endif -void sfbattach __P((struct device *, struct device *, void *)); +void sfbattach(struct device *, struct device *, void *); struct cfattach sfb_ca = { sizeof(struct sfb_softc), sfbmatch, sfbattach, @@ -67,7 +67,7 @@ struct cfdriver sfb_cd = { NULL, "sfb", DV_DULL, }; -void sfb_getdevconfig __P((tc_addr_t dense_addr, struct sfb_devconfig *dc)); +void sfb_getdevconfig(tc_addr_t dense_addr, struct sfb_devconfig *dc); struct sfb_devconfig sfb_console_dc; tc_addr_t sfb_consaddr; @@ -97,18 +97,18 @@ struct wsscreen_list sfb_screenlist = { sizeof(_sfb_scrlist) / sizeof(struct wsscreen_descr *), _sfb_scrlist }; -int sfbioctl __P((void *, u_long, caddr_t, int, struct proc *)); -paddr_t sfbmmap __P((void *, off_t, int)); +int sfbioctl(void *, u_long, caddr_t, int, struct proc *); +paddr_t sfbmmap(void *, off_t, int); -static int sfb_alloc_screen __P((void *, const struct wsscreen_descr *, - void **, int *, int *, long *)); -static void sfb_free_screen __P((void *, void *)); +static int sfb_alloc_screen(void *, const struct wsscreen_descr *, + void **, int *, int *, long *); +static void sfb_free_screen(void *, void *); static int sfb_show_screen __P((void *, void *, int, void (*) (void *, int, int), void *)); #if 0 -void sfb_blank __P((struct sfb_devconfig *)); -void sfb_unblank __P((struct sfb_devconfig *)); +void sfb_blank(struct sfb_devconfig *); +void sfb_unblank(struct sfb_devconfig *); #endif struct wsdisplay_accessops sfb_accessops = { @@ -403,7 +403,7 @@ sfb_show_screen(v, cookie, waitok, cb, cbarg) void *v; void *cookie; int waitok; - void (*cb) __P((void *, int, int)); + void (*cb)(void *, int, int); void *cbarg; { |