summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k
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/mvme88k
parent306adfe37a19b924bfe990750192540a4af86079 (diff)
added const to second parameter of cfprint_t routines
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r--sys/arch/mvme88k/dev/mb.c4
-rw-r--r--sys/arch/mvme88k/dev/pcctwo.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mvme88k/dev/mb.c b/sys/arch/mvme88k/dev/mb.c
index 2cf934de61f..fda18a1502f 100644
--- a/sys/arch/mvme88k/dev/mb.c
+++ b/sys/arch/mvme88k/dev/mb.c
@@ -7,7 +7,7 @@
#include <machine/cpu.h>
void mbattach __P((struct device *, struct device *, void *));
-int mbprint __P((void *, char *));
+int mbprint __P((void *, const char *));
int mbmatch __P((struct device *, struct cfdata *, void *));
int submatch( struct device *parent, struct cfdata *self, void *aux);
@@ -54,7 +54,7 @@ mbattach(pdp, dp, auxp)
mbprint(auxp, pnp)
void *auxp;
- char *pnp;
+ const char *pnp;
{
if (pnp)
printf("%s at %s", (char *)auxp, pnp);
diff --git a/sys/arch/mvme88k/dev/pcctwo.c b/sys/arch/mvme88k/dev/pcctwo.c
index be4fc02be6a..bdb07c82294 100644
--- a/sys/arch/mvme88k/dev/pcctwo.c
+++ b/sys/arch/mvme88k/dev/pcctwo.c
@@ -97,7 +97,7 @@ pcctwomatch(parent, vcf, args)
int
pcctwo_print(args, bus)
void *args;
- char *bus;
+ const char *bus;
{
struct confargs *ca = args;