summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2008-01-08 05:08:33 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2008-01-08 05:08:33 +0000
commitd86085fb8822694488418b924056f6b9098777f0 (patch)
tree6aac49b82609210db50242e4bd6ff6f5a485d66c /sys/arch
parent281d56efda63b8fc539790883ab71e4863b31f99 (diff)
Be uniform with console message from other devices
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/sparc64/dev/sab.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/sparc64/dev/sab.c b/sys/arch/sparc64/dev/sab.c
index faf3d3cbaa1..638bf3e85f5 100644
--- a/sys/arch/sparc64/dev/sab.c
+++ b/sys/arch/sparc64/dev/sab.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sab.c,v 1.21 2007/11/14 20:43:12 kettenis Exp $ */
+/* $OpenBSD: sab.c,v 1.22 2008/01/08 05:08:32 deraadt Exp $ */
/*
* Copyright (c) 2001 Jason L. Wright (jason@thought.net)
@@ -413,14 +413,14 @@ sabtty_attach(parent, self, aux)
switch (sc->sc_flags & (SABTTYF_CONS_IN | SABTTYF_CONS_OUT)) {
case SABTTYF_CONS_IN:
- acc = "input";
+ acc = " input";
break;
case SABTTYF_CONS_OUT:
- acc = "output";
+ acc = " output";
break;
case SABTTYF_CONS_IN|SABTTYF_CONS_OUT:
default:
- acc = "i/o";
+ acc = "";
break;
}
@@ -448,7 +448,7 @@ sabtty_attach(parent, self, aux)
cn_tab->cn_putc = sab_cnputc;
cn_tab->cn_dev = makedev(77/*XXX*/, self->dv_unit);
}
- printf(": console %s", acc);
+ printf(": console%s", acc);
} else {
/* Not a console... */
sabtty_reset(sc);