summaryrefslogtreecommitdiff
path: root/sys/dev/isa/viasio.c
diff options
context:
space:
mode:
authorStuart Henderson <sthen@cvs.openbsd.org>2009-03-29 21:53:54 +0000
committerStuart Henderson <sthen@cvs.openbsd.org>2009-03-29 21:53:54 +0000
commit69c5b21cf2da9c2ff6a2d3adf1f48f811feac372 (patch)
tree599868694b84d6aa6c93806fb08f3921218dba10 /sys/dev/isa/viasio.c
parente8880d029cebac8827fe0228bf64b8a2ba3ad456 (diff)
make various strings ("can't map mem space" and similar) more consistent
between instances, saving space in the kernel. feedback from many (some incorporated, some left for future work). ok deraadt, kettenis, "why not" miod.
Diffstat (limited to 'sys/dev/isa/viasio.c')
-rw-r--r--sys/dev/isa/viasio.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/isa/viasio.c b/sys/dev/isa/viasio.c
index cb7527ccd87..08be95cd50e 100644
--- a/sys/dev/isa/viasio.c
+++ b/sys/dev/isa/viasio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: viasio.c,v 1.11 2008/09/10 14:01:22 blambert Exp $ */
+/* $OpenBSD: viasio.c,v 1.12 2009/03/29 21:53:52 sthen Exp $ */
/*
* Copyright (c) 2005 Alexander Yurchenko <grange@openbsd.org>
*
@@ -176,7 +176,7 @@ viasio_attach(struct device *parent, struct device *self, void *aux)
sc->sc_iot = ia->ia_iot;
if (bus_space_map(sc->sc_iot, ia->ipa_io[0].base,
VT1211_IOSIZE, 0, &sc->sc_ioh)) {
- printf(": can't map I/O space\n");
+ printf(": can't map i/o space\n");
return;
}
@@ -242,7 +242,7 @@ viasio_hm_init(struct viasio_softc *sc)
/* Map HM I/O space */
if (bus_space_map(sc->sc_iot, iobase, VT1211_HM_IOSIZE, 0,
&sc->sc_hm_ioh)) {
- printf(" can't map I/O space");
+ printf(" can't map i/o space");
return;
}
@@ -473,7 +473,7 @@ viasio_wdg_init(struct viasio_softc *sc)
/* Map WDG I/O space */
if (bus_space_map(sc->sc_iot, iobase, VT1211_WDG_IOSIZE, 0,
&sc->sc_wdg_ioh)) {
- printf(" can't map I/O space");
+ printf(" can't map i/o space");
return;
}