summaryrefslogtreecommitdiff
path: root/sys/arch/pmax/tc/asic.c
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1996-11-23 21:47:14 +0000
committerkstailey <kstailey@cvs.openbsd.org>1996-11-23 21:47:14 +0000
commit728527f840ec82a566f72f3cec384e341ac59a4c (patch)
treef9b921355a0db868e86c0df2976673aee9af1339 /sys/arch/pmax/tc/asic.c
parent306adfe37a19b924bfe990750192540a4af86079 (diff)
added const to second parameter of cfprint_t routines
Diffstat (limited to 'sys/arch/pmax/tc/asic.c')
-rw-r--r--sys/arch/pmax/tc/asic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/pmax/tc/asic.c b/sys/arch/pmax/tc/asic.c
index 35322ff97ab..98e89b22af4 100644
--- a/sys/arch/pmax/tc/asic.c
+++ b/sys/arch/pmax/tc/asic.c
@@ -69,7 +69,7 @@ struct asic_softc {
/* Definition of the driver for autoconfig. */
int asicmatch __P((struct device *, void *, void *));
void asicattach __P((struct device *, struct device *, void *));
-int asicprint(void *, char *);
+int asicprint(void *, const char *);
/* Device locators. */
#define ioasiccf_offset cf_loc[0] /* offset */
@@ -248,7 +248,7 @@ asicattach(parent, self, aux)
int
asicprint(aux, pnp)
void *aux;
- char *pnp;
+ const char *pnp;
{
struct ioasicdev_attach_args *d = aux;