diff options
Diffstat (limited to 'sys/arch/sun3/dev/cg2.c')
-rw-r--r-- | sys/arch/sun3/dev/cg2.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/arch/sun3/dev/cg2.c b/sys/arch/sun3/dev/cg2.c index 53411377c73..17aca349433 100644 --- a/sys/arch/sun3/dev/cg2.c +++ b/sys/arch/sun3/dev/cg2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cg2.c,v 1.9 2001/11/06 19:53:16 miod Exp $ */ +/* $OpenBSD: cg2.c,v 1.10 2002/03/14 01:26:46 millert Exp $ */ /* $NetBSD: cg2.c,v 1.7 1996/10/13 03:47:26 christos Exp $ */ /* @@ -95,8 +95,8 @@ struct cg2_softc { }; /* autoconfiguration driver */ -static void cg2attach __P((struct device *, struct device *, void *)); -static int cg2match __P((struct device *, void *, void *)); +static void cg2attach(struct device *, struct device *, void *); +static int cg2match(struct device *, void *, void *); struct cfattach cgtwo_ca = { sizeof(struct cg2_softc), cg2match, cg2attach @@ -106,11 +106,11 @@ struct cfdriver cgtwo_cd = { NULL, "cgtwo", DV_DULL }; -static int cg2gattr __P((struct fbdevice *, struct fbgattr *)); -static int cg2gvideo __P((struct fbdevice *, int *)); -static int cg2svideo __P((struct fbdevice *, int *)); -static int cg2getcmap __P((struct fbdevice *, struct fbcmap *)); -static int cg2putcmap __P((struct fbdevice *, struct fbcmap *)); +static int cg2gattr(struct fbdevice *, struct fbgattr *); +static int cg2gvideo(struct fbdevice *, int *); +static int cg2svideo(struct fbdevice *, int *); +static int cg2getcmap(struct fbdevice *, struct fbcmap *); +static int cg2putcmap(struct fbdevice *, struct fbcmap *); static struct fbdriver cg2fbdriver = { cg2open, cg2close, cg2mmap, cg2gattr, @@ -118,7 +118,7 @@ static struct fbdriver cg2fbdriver = { cg2getcmap, cg2putcmap }; -static int cg2intr __P((void*)); +static int cg2intr(void*); /* * Match a cg2. |