diff options
author | 2009-03-29 21:53:52 +0000 | |
---|---|---|
committer | 2009-03-29 21:53:52 +0000 | |
commit | e10c952f7e94bfde9fcd30d5b1abf17668c63aad (patch) | |
tree | de7626cb1afd57d0e8808c8c6cef7adb3976dd0a /sys/dev/isa/gscsio.c | |
parent | Make sure systat mbufs prints the interface name even if an interface only (diff) | |
download | wireguard-openbsd-e10c952f7e94bfde9fcd30d5b1abf17668c63aad.tar.xz wireguard-openbsd-e10c952f7e94bfde9fcd30d5b1abf17668c63aad.zip |
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/gscsio.c')
-rw-r--r-- | sys/dev/isa/gscsio.c | 4 |
1 files changed, 2 insertions, 2 deletions
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:", |