summaryrefslogtreecommitdiff
path: root/sys/dev/pci/viapm.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/pci/viapm.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/pci/viapm.c')
-rw-r--r--sys/dev/pci/viapm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/viapm.c b/sys/dev/pci/viapm.c
index d6da31c2cbb..a61da35a418 100644
--- a/sys/dev/pci/viapm.c
+++ b/sys/dev/pci/viapm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: viapm.c,v 1.9 2008/02/17 21:29:48 brad Exp $ */
+/* $OpenBSD: viapm.c,v 1.10 2009/03/29 21:53:53 sthen Exp $ */
/*
* Copyright (c) 2005 Mark Kettenis <kettenis@openbsd.org>
@@ -160,7 +160,7 @@ viapm_attach(struct device *parent, struct device *self, void *aux)
if (iobase == 0 ||
bus_space_map(sc->sc_iot, iobase & 0xfffe,
VIAPM_SMB_SIZE, 0, &sc->sc_ioh)) {
- printf(": can't map I/O space\n");
+ printf(": can't map i/o space\n");
return;
}