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/hp300/dev/grf_gb.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/hp300/dev/grf_gb.c')
-rw-r--r-- | sys/arch/hp300/dev/grf_gb.c | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/sys/arch/hp300/dev/grf_gb.c b/sys/arch/hp300/dev/grf_gb.c index 4e1b70161f6..dfb7bed13d1 100644 --- a/sys/arch/hp300/dev/grf_gb.c +++ b/sys/arch/hp300/dev/grf_gb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: grf_gb.c,v 1.6 1997/04/16 11:56:03 downsj Exp $ */ +/* $OpenBSD: grf_gb.c,v 1.7 2002/03/14 01:26:30 millert Exp $ */ /* $NetBSD: grf_gb.c,v 1.11 1997/03/31 07:34:15 scottr Exp $ */ /* @@ -85,19 +85,19 @@ u_char crtc_init_data[CRTC_DATA_LENGTH] = { 0x30, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00 }; -int gb_init __P((struct grf_data *gp, int, caddr_t)); -int gb_mode __P((struct grf_data *gp, int, caddr_t)); -void gb_microcode __P((struct gboxfb *)); +int gb_init(struct grf_data *gp, int, caddr_t); +int gb_mode(struct grf_data *gp, int, caddr_t); +void gb_microcode(struct gboxfb *); -int gbox_intio_match __P((struct device *, void *, void *)); -void gbox_intio_attach __P((struct device *, struct device *, void *)); +int gbox_intio_match(struct device *, void *, void *); +void gbox_intio_attach(struct device *, struct device *, void *); -int gbox_dio_match __P((struct device *, void *, void *)); -void gbox_dio_attach __P((struct device *, struct device *, void *)); +int gbox_dio_match(struct device *, void *, void *); +void gbox_dio_attach(struct device *, struct device *, void *); -int gbox_console_scan __P((int, caddr_t, void *)); -void gboxcnprobe __P((struct consdev *cp)); -void gboxcninit __P((struct consdev *cp)); +int gbox_console_scan(int, caddr_t, void *); +void gboxcnprobe(struct consdev *cp); +void gboxcninit(struct consdev *cp); struct cfattach gbox_intio_ca = { sizeof(struct grfdev_softc), gbox_intio_match, gbox_intio_attach @@ -117,14 +117,14 @@ struct grfsw gbox_grfsw = { }; #if NITE > 0 -void gbox_init __P((struct ite_data *)); -void gbox_deinit __P((struct ite_data *)); -void gbox_putc __P((struct ite_data *, int, int, int, int)); -void gbox_cursor __P((struct ite_data *, int)); -void gbox_clear __P((struct ite_data *, int, int, int, int)); -void gbox_scroll __P((struct ite_data *, int, int, int, int)); -void gbox_windowmove __P((struct ite_data *, int, int, int, int, - int, int, int)); +void gbox_init(struct ite_data *); +void gbox_deinit(struct ite_data *); +void gbox_putc(struct ite_data *, int, int, int, int); +void gbox_cursor(struct ite_data *, int); +void gbox_clear(struct ite_data *, int, int, int, int); +void gbox_scroll(struct ite_data *, int, int, int, int); +void gbox_windowmove(struct ite_data *, int, int, int, int, + int, int, int); /* Gatorbox ite switch */ struct itesw gbox_itesw = { |