diff options
Diffstat (limited to 'sys/arch/alpha/pci')
-rw-r--r-- | sys/arch/alpha/pci/apecs.c | 6 | ||||
-rw-r--r-- | sys/arch/alpha/pci/cia.c | 6 | ||||
-rw-r--r-- | sys/arch/alpha/pci/lca.c | 6 | ||||
-rw-r--r-- | sys/arch/alpha/pci/pcivga.c | 6 | ||||
-rw-r--r-- | sys/arch/alpha/pci/sio.c | 6 | ||||
-rw-r--r-- | sys/arch/alpha/pci/tga.c | 6 |
6 files changed, 18 insertions, 18 deletions
diff --git a/sys/arch/alpha/pci/apecs.c b/sys/arch/alpha/pci/apecs.c index fee67e04274..5dfdd42262b 100644 --- a/sys/arch/alpha/pci/apecs.c +++ b/sys/arch/alpha/pci/apecs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: apecs.c,v 1.5 1996/10/30 22:39:46 niklas Exp $ */ +/* $OpenBSD: apecs.c,v 1.6 1996/11/23 21:44:53 kstailey Exp $ */ /* $NetBSD: apecs.c,v 1.12 1996/10/13 03:00:00 christos Exp $ */ /* @@ -61,7 +61,7 @@ struct cfdriver apecs_cd = { NULL, "apecs", DV_DULL, }; -int apecsprint __P((void *, /* const */ char *pnp)); +int apecsprint __P((void *, const char *pnp)); /* There can be only one. */ int apecsfound; @@ -166,7 +166,7 @@ apecsattach(parent, self, aux) int apecsprint(aux, pnp) void *aux; - /* const */ char *pnp; + const char *pnp; { register struct pcibus_attach_args *pba = aux; diff --git a/sys/arch/alpha/pci/cia.c b/sys/arch/alpha/pci/cia.c index 8337d47c48c..c52bec93a35 100644 --- a/sys/arch/alpha/pci/cia.c +++ b/sys/arch/alpha/pci/cia.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cia.c,v 1.4 1996/10/30 22:39:53 niklas Exp $ */ +/* $OpenBSD: cia.c,v 1.5 1996/11/23 21:44:54 kstailey Exp $ */ /* $NetBSD: cia.c,v 1.11 1996/10/13 03:00:03 christos Exp $ */ /* @@ -60,7 +60,7 @@ struct cfdriver cia_cd = { NULL, "cia", DV_DULL, }; -int ciaprint __P((void *, /* const */ char *pnp)); +int ciaprint __P((void *, const char *pnp)); /* There can be only one. */ int ciafound; @@ -148,7 +148,7 @@ ciaattach(parent, self, aux) int ciaprint(aux, pnp) void *aux; - /* const */ char *pnp; + const char *pnp; { register struct pcibus_attach_args *pba = aux; diff --git a/sys/arch/alpha/pci/lca.c b/sys/arch/alpha/pci/lca.c index 64994855849..a0004181456 100644 --- a/sys/arch/alpha/pci/lca.c +++ b/sys/arch/alpha/pci/lca.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lca.c,v 1.4 1996/10/30 22:39:59 niklas Exp $ */ +/* $OpenBSD: lca.c,v 1.5 1996/11/23 21:44:54 kstailey Exp $ */ /* $NetBSD: lca.c,v 1.10 1996/10/13 03:00:07 christos Exp $ */ /* @@ -61,7 +61,7 @@ struct cfdriver lca_cd = { NULL, "lca", DV_DULL, }; -int lcaprint __P((void *, /* const */ char *pnp)); +int lcaprint __P((void *, const char *pnp)); /* There can be only one. */ int lcafound; @@ -203,7 +203,7 @@ lcaattach(parent, self, aux) int lcaprint(aux, pnp) void *aux; - /* const */ char *pnp; + const char *pnp; { register struct pcibus_attach_args *pba = aux; diff --git a/sys/arch/alpha/pci/pcivga.c b/sys/arch/alpha/pci/pcivga.c index 1cbcabde789..1670af9ebb2 100644 --- a/sys/arch/alpha/pci/pcivga.c +++ b/sys/arch/alpha/pci/pcivga.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcivga.c,v 1.7 1996/10/30 22:40:10 niklas Exp $ */ +/* $OpenBSD: pcivga.c,v 1.8 1996/11/23 21:44:55 kstailey Exp $ */ /* $NetBSD: pcivga.c,v 1.11 1996/10/13 03:00:13 christos Exp $ */ /* @@ -49,7 +49,7 @@ int pcivgamatch __P((struct device *, void *, void *)); void pcivgaattach __P((struct device *, struct device *, void *)); -int pcivgaprint __P((void *, /* const */ char *)); +int pcivgaprint __P((void *, const char *)); struct cfattach pcivga_ca = { sizeof(struct pcivga_softc), pcivgamatch, pcivgaattach, @@ -221,7 +221,7 @@ pcivgaattach(parent, self, aux) int pcivgaprint(aux, pnp) void *aux; - /* const */ char *pnp; + const char *pnp; { if (pnp) diff --git a/sys/arch/alpha/pci/sio.c b/sys/arch/alpha/pci/sio.c index 4dfca1d5e64..021573560de 100644 --- a/sys/arch/alpha/pci/sio.c +++ b/sys/arch/alpha/pci/sio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sio.c,v 1.6 1996/11/12 20:29:39 niklas Exp $ */ +/* $OpenBSD: sio.c,v 1.7 1996/11/23 21:44:56 kstailey Exp $ */ /* $NetBSD: sio.c,v 1.11 1996/10/13 03:00:18 christos Exp $ */ /* @@ -72,7 +72,7 @@ union sio_attach_args { struct eisabus_attach_args sa_eba; }; -int sioprint __P((void *, /* const */ char *pnp)); +int sioprint __P((void *, const char *pnp)); void sio_isa_attach_hook __P((struct device *, struct device *, struct isabus_attach_args *)); void sio_eisa_attach_hook __P((struct device *, struct device *, @@ -170,7 +170,7 @@ sioattach(parent, self, aux) int sioprint(aux, pnp) void *aux; - /* const */ char *pnp; + const char *pnp; { register union sio_attach_args *sa = aux; diff --git a/sys/arch/alpha/pci/tga.c b/sys/arch/alpha/pci/tga.c index ac4f6d976dd..384dd7c31e8 100644 --- a/sys/arch/alpha/pci/tga.c +++ b/sys/arch/alpha/pci/tga.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tga.c,v 1.6 1996/11/12 20:29:41 niklas Exp $ */ +/* $OpenBSD: tga.c,v 1.7 1996/11/23 21:44:56 kstailey Exp $ */ /* $NetBSD: tga.c,v 1.10 1996/10/13 03:00:22 christos Exp $ */ /* @@ -57,7 +57,7 @@ int tgamatch __P((struct device *, void *, void *)); void tgaattach __P((struct device *, struct device *, void *)); -int tgaprint __P((void *, /* const */ char *)); +int tgaprint __P((void *, const char *)); struct cfattach tga_ca = { sizeof(struct tga_softc), tgamatch, tgaattach, @@ -312,7 +312,7 @@ tgaattach(parent, self, aux) int tgaprint(aux, pnp) void *aux; - /* const */ char *pnp; + const char *pnp; { if (pnp) |