summaryrefslogtreecommitdiffstats
path: root/sys/dev/isa
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/isa')
-rw-r--r--sys/dev/isa/aic_isa.c4
-rw-r--r--sys/dev/isa/ega.c8
-rw-r--r--sys/dev/isa/gscsio.c4
-rw-r--r--sys/dev/isa/if_eg.c4
-rw-r--r--sys/dev/isa/if_le_isa.c4
-rw-r--r--sys/dev/isa/isagpio.c4
-rw-r--r--sys/dev/isa/mpu_isa.c6
-rw-r--r--sys/dev/isa/pcdisplay.c6
-rw-r--r--sys/dev/isa/sch311x.c6
-rw-r--r--sys/dev/isa/viasio.c8
-rw-r--r--sys/dev/isa/wbsio.c4
11 files changed, 29 insertions, 29 deletions
diff --git a/sys/dev/isa/aic_isa.c b/sys/dev/isa/aic_isa.c
index 3245b152a69..cf81728a085 100644
--- a/sys/dev/isa/aic_isa.c
+++ b/sys/dev/isa/aic_isa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: aic_isa.c,v 1.4 2002/03/14 01:26:56 millert Exp $ */
+/* $OpenBSD: aic_isa.c,v 1.5 2009/03/29 21:53:52 sthen Exp $ */
/* $NetBSD: aic6360.c,v 1.52 1996/12/10 21:27:51 thorpej Exp $ */
/*
@@ -129,7 +129,7 @@ aic_isa_attach(parent, self, aux)
struct aic_softc *sc = (void *)self;
if (bus_space_map(iot, ia->ia_iobase, AIC_NPORTS, 0, &ioh))
- panic("%s: could not map I/O-ports", sc->sc_dev.dv_xname);
+ panic("%s: can't map i/o-ports", sc->sc_dev.dv_xname);
sc->sc_iot = iot;
sc->sc_ioh = ioh;
diff --git a/sys/dev/isa/ega.c b/sys/dev/isa/ega.c
index bc93ef764b1..3fcda238a0f 100644
--- a/sys/dev/isa/ega.c
+++ b/sys/dev/isa/ega.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ega.c,v 1.12 2007/02/06 22:03:24 miod Exp $ */
+/* $OpenBSD: ega.c,v 1.13 2009/03/29 21:53:52 sthen Exp $ */
/* $NetBSD: ega.c,v 1.4.4.1 2000/06/30 16:27:47 simonb Exp $ */
/*
@@ -432,14 +432,14 @@ ega_init(vc, iot, memt, mono)
vh->vh_mono = mono;
if (bus_space_map(vh->vh_iot, 0x3c0, 0x10, 0, &vh->vh_ioh_vga))
- panic("ega_common_setup: couldn't map ega io");
+ panic("ega_common_setup: can't map ega i/o");
if (bus_space_map(vh->vh_iot, (vh->vh_mono ? 0x3b0 : 0x3d0), 0x10, 0,
&vh->vh_ioh_6845))
- panic("ega_common_setup: couldn't map 6845 io");
+ panic("ega_common_setup: can't map 6845 i/o");
if (bus_space_map(vh->vh_memt, 0xa0000, 0x20000, 0, &vh->vh_allmemh))
- panic("ega_common_setup: couldn't map memory");
+ panic("ega_common_setup: can't map mem space");
if (bus_space_subregion(vh->vh_memt, vh->vh_allmemh,
(vh->vh_mono ? 0x10000 : 0x18000), 0x8000,
diff --git a/sys/dev/isa/gscsio.c b/sys/dev/isa/gscsio.c
index 8d400dc7f44..1a7b7dd5bd0 100644
--- a/sys/dev/isa/gscsio.c
+++ b/sys/dev/isa/gscsio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: gscsio.c,v 1.9 2007/06/05 08:37:20 jsg Exp $ */
+/* $OpenBSD: gscsio.c,v 1.10 2009/03/29 21:53:52 sthen Exp $ */
/*
* Copyright (c) 2004 Alexander Yurchenko <grange@openbsd.org>
*
@@ -151,7 +151,7 @@ gscsio_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, GSCSIO_IOSIZE,
0, &sc->sc_ioh)) {
- printf(": can't map I/O space\n");
+ printf(": can't map i/o space\n");
return;
}
printf(": SC1100 SIO rev %d:",
diff --git a/sys/dev/isa/if_eg.c b/sys/dev/isa/if_eg.c
index 5d5d2e28409..48d7b6a06c5 100644
--- a/sys/dev/isa/if_eg.c
+++ b/sys/dev/isa/if_eg.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_eg.c,v 1.31 2008/10/02 20:21:13 brad Exp $ */
+/* $OpenBSD: if_eg.c,v 1.32 2009/03/29 21:53:52 sthen Exp $ */
/* $NetBSD: if_eg.c,v 1.26 1996/05/12 23:52:27 mycroft Exp $ */
/*
@@ -326,7 +326,7 @@ egprobe(parent, match, aux)
}
if (bus_space_map(bst, ia->ia_iobase, EG_IO_PORTS, 0, &bsh)) {
- DPRINTF(("%s: can't map I/O space\n", sc->sc_dev.dv_xname));
+ DPRINTF(("%s: can't map i/o space\n", sc->sc_dev.dv_xname));
return (0);
}
sc->sc_bsh = bsh;
diff --git a/sys/dev/isa/if_le_isa.c b/sys/dev/isa/if_le_isa.c
index 14ff40f7f14..84b4f0a52ba 100644
--- a/sys/dev/isa/if_le_isa.c
+++ b/sys/dev/isa/if_le_isa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_le_isa.c,v 1.19 2007/06/17 21:20:47 jasper Exp $ */
+/* $OpenBSD: if_le_isa.c,v 1.20 2009/03/29 21:53:52 sthen Exp $ */
/* $NetBSD: if_le_isa.c,v 1.2 1996/05/12 23:52:56 mycroft Exp $ */
/*-
@@ -303,7 +303,7 @@ le_isa_attach(struct device *parent, struct device *self,
bus_space_handle_t ioh;
if (bus_space_map(iot, ia->ia_iobase, ia->ia_iosize, 0, &ioh))
- panic("%s: could not map I/O-ports", sc->sc_dev.dv_xname);
+ panic("%s: can't map I/O-ports", sc->sc_dev.dv_xname);
lesc->sc_iot = iot;
lesc->sc_ioh = ioh;
diff --git a/sys/dev/isa/isagpio.c b/sys/dev/isa/isagpio.c
index 6be56c28f6e..8a69c639c4c 100644
--- a/sys/dev/isa/isagpio.c
+++ b/sys/dev/isa/isagpio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: isagpio.c,v 1.3 2006/04/01 08:32:52 grange Exp $ */
+/* $OpenBSD: isagpio.c,v 1.4 2009/03/29 21:53:52 sthen Exp $ */
/*
* Copyright (c) 2006 Oleg Safiullin <form@pdp-11.org.ru>
@@ -98,7 +98,7 @@ isagpio_attach(struct device *parent, struct device *self, void *aux)
if (bus_space_map(ia->ia_iot, ia->ia_iobase, ia->ia_iosize, 0,
&sc->sc_ioh) != 0) {
- printf(": couldn't map I/O space\n");
+ printf(": can't map i/o space\n");
return;
}
diff --git a/sys/dev/isa/mpu_isa.c b/sys/dev/isa/mpu_isa.c
index cc1e852ec08..5e3fa5bcb6b 100644
--- a/sys/dev/isa/mpu_isa.c
+++ b/sys/dev/isa/mpu_isa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mpu_isa.c,v 1.3 2003/01/29 20:35:13 mickey Exp $ */
+/* $OpenBSD: mpu_isa.c,v 1.4 2009/03/29 21:53:52 sthen Exp $ */
/*
* Copyright (c) 2002 Sergey Smitienko. All rights reserved.
@@ -79,7 +79,7 @@ mpu_test (iot, iobase)
rc = 0;
if (bus_space_map(iot, iobase, MPU401_NPORT, 0, &ioh)) {
- DPRINTF(("mpu_test: can`t map: %x/2\n", iobase));
+ DPRINTF(("mpu_test: can't map: %x/2\n", iobase));
return (0);
}
@@ -144,7 +144,7 @@ mpu_isa_attach(parent, self, aux)
if (bus_space_map (ia->ia_iot, ia->ia_iobase, MPU401_NPORT,
0, &sc->sc_mpu.ioh)) {
- printf(": can`t map i/o space\n");
+ printf(": can't map i/o space\n");
return;
}
diff --git a/sys/dev/isa/pcdisplay.c b/sys/dev/isa/pcdisplay.c
index 3a35f1fe1b7..4f7df6e188c 100644
--- a/sys/dev/isa/pcdisplay.c
+++ b/sys/dev/isa/pcdisplay.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pcdisplay.c,v 1.9 2006/11/29 19:08:22 miod Exp $ */
+/* $OpenBSD: pcdisplay.c,v 1.10 2009/03/29 21:53:52 sthen Exp $ */
/* $NetBSD: pcdisplay.c,v 1.9.4.1 2000/06/30 16:27:48 simonb Exp $ */
/*
@@ -185,10 +185,10 @@ pcdisplay_init(dc, iot, memt, mono)
if (bus_space_map(memt, mono ? 0xb0000 : 0xb8000, 0x8000,
0, &ph->ph_memh))
- panic("pcdisplay_init: cannot map memory");
+ panic("pcdisplay_init: can't map mem space");
if (bus_space_map(iot, mono ? 0x3b0 : 0x3d0, 0x10,
0, &ph->ph_ioh_6845))
- panic("pcdisplay_init: cannot map io");
+ panic("pcdisplay_init: can't map i/o space");
/*
* initialize the only screen
diff --git a/sys/dev/isa/sch311x.c b/sys/dev/isa/sch311x.c
index c2ab4c4029a..50d0cc76e22 100644
--- a/sys/dev/isa/sch311x.c
+++ b/sys/dev/isa/sch311x.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sch311x.c,v 1.5 2009/03/25 20:41:31 mk Exp $ */
+/* $OpenBSD: sch311x.c,v 1.6 2009/03/29 21:53:52 sthen Exp $ */
/*
* Copyright (c) 2008 Mark Kettenis <kettenis@openbsd.org>
* Copyright (c) 2009 Michael Knudsen <mk@openbsd.org>
@@ -269,7 +269,7 @@ schsio_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,
SCHSIO_IOSIZE, 0, &sc->sc_ioh)) {
- printf(": can't map I/O space\n");
+ printf(": can't map i/o space\n");
return;
}
@@ -306,7 +306,7 @@ schsio_attach(struct device *parent, struct device *self, void *aux)
if (bus_space_map(sc->sc_iot, iobase, SCHSIO_LDEV_RUNTIME_SZ,
0, &sc->sc_ioh_rr)) {
- printf(": can't map I/O space\n");
+ printf(": can't map i/o space\n");
return;
}
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;
}
diff --git a/sys/dev/isa/wbsio.c b/sys/dev/isa/wbsio.c
index 3a12ac2caab..9e4c27f3257 100644
--- a/sys/dev/isa/wbsio.c
+++ b/sys/dev/isa/wbsio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: wbsio.c,v 1.4 2008/04/08 18:48:43 kettenis Exp $ */
+/* $OpenBSD: wbsio.c,v 1.5 2009/03/29 21:53:52 sthen Exp $ */
/*
* Copyright (c) 2008 Mark Kettenis <kettenis@openbsd.org>
*
@@ -161,7 +161,7 @@ wbsio_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,
WBSIO_IOSIZE, 0, &sc->sc_ioh)) {
- printf(": can't map I/O space\n");
+ printf(": can't map i/o space\n");
return;
}