diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1996-11-23 21:47:14 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1996-11-23 21:47:14 +0000 |
commit | 728527f840ec82a566f72f3cec384e341ac59a4c (patch) | |
tree | f9b921355a0db868e86c0df2976673aee9af1339 /sys/arch/atari/dev/grf.c | |
parent | 306adfe37a19b924bfe990750192540a4af86079 (diff) |
added const to second parameter of cfprint_t routines
Diffstat (limited to 'sys/arch/atari/dev/grf.c')
-rw-r--r-- | sys/arch/atari/dev/grf.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/atari/dev/grf.c b/sys/arch/atari/dev/grf.c index 81f78e5577b..899714c44f9 100644 --- a/sys/arch/atari/dev/grf.c +++ b/sys/arch/atari/dev/grf.c @@ -99,13 +99,13 @@ int grfbanked_set __P((dev_t, int)); static void grf_viewsync __P((struct grf_softc *)); static int grf_mode __P((struct grf_softc *, int, void *, int, int)); -int grfbusprint __P((void *auxp, char *)); +int grfbusprint __P((void *auxp, const char *)); int grfbusmatch __P((struct device *, struct cfdata *, void *)); void grfbusattach __P((struct device *, struct device *, void *)); void grfattach __P((struct device *, struct device *, void *)); int grfmatch __P((struct device *, struct cfdata *, void *)); -int grfprint __P((void *, char *)); +int grfprint __P((void *, const char *)); /* * pointers to grf drivers device structs */ @@ -186,8 +186,8 @@ void *auxp; int grfbusprint(auxp, name) -void *auxp; -char *name; + void *auxp; + const char *name; { if(name == NULL) return(UNCONF); @@ -287,8 +287,8 @@ void *auxp; int grfprint(auxp, pnp) -void *auxp; -char *pnp; + void *auxp; + const char *pnp; { if(pnp) printf("ite at %s", pnp); |