summaryrefslogtreecommitdiff
path: root/sys/dev/pci/auich.c
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2000-07-18 21:33:12 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2000-07-18 21:33:12 +0000
commit29da39536c173d2ad697ed5ffd57f955e59e9ac3 (patch)
tree30eabe5af7a6e6bdf52e0d3bb666ac5269f52f23 /sys/dev/pci/auich.c
parent5e93edace0c28c6895e3cd95e34e9141fa3de5c1 (diff)
better error messages for mapreg
Diffstat (limited to 'sys/dev/pci/auich.c')
-rw-r--r--sys/dev/pci/auich.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/auich.c b/sys/dev/pci/auich.c
index 0649eedc101..9d296bda1fb 100644
--- a/sys/dev/pci/auich.c
+++ b/sys/dev/pci/auich.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auich.c,v 1.1 2000/05/30 16:30:38 mickey Exp $ */
+/* $OpenBSD: auich.c,v 1.2 2000/07/18 21:33:11 mickey Exp $ */
/*
* Copyright (c) 2000 Michael Shalayeff
@@ -324,12 +324,12 @@ ich_attach(parent, self, aux)
if (pci_mapreg_map(pa, ICH_NAMBAR, PCI_MAPREG_TYPE_IO, 0,
&sc->iot, &sc->mix_ioh, NULL, &mix_size)) {
- printf(": can't map i/o space\n");
+ printf(": can't map codec i/o space\n");
return;
}
if (pci_mapreg_map(pa, ICH_NABMBAR, PCI_MAPREG_TYPE_IO, 0,
&sc->iot, &sc->aud_ioh, NULL, &aud_size)) {
- printf(": can't map i/o space\n");
+ printf(": can't map device i/o space\n");
bus_space_unmap(sc->iot, sc->mix_ioh, mix_size);
return;
}