diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-06-06 01:08:48 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-06-06 01:08:48 +0000 |
commit | cd88bda91c40e680c701a08881845e5d13b66821 (patch) | |
tree | 2546d95133f271e5016e22af98ca8ab7c9c1a965 /sys/arch | |
parent | 5d403a394ea56b27d9f3e5512098daf26c567839 (diff) |
Homogeneize dmesg output.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/macppc/dev/adb.c | 4 | ||||
-rw-r--r-- | sys/arch/sparc64/dev/com_ebus.c | 6 | ||||
-rw-r--r-- | sys/arch/sparc64/dev/z8530tty.c | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/sys/arch/macppc/dev/adb.c b/sys/arch/macppc/dev/adb.c index ebb03fd70d8..533195bbbe0 100644 --- a/sys/arch/macppc/dev/adb.c +++ b/sys/arch/macppc/dev/adb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: adb.c,v 1.9 2003/10/16 03:54:48 deraadt Exp $ */ +/* $OpenBSD: adb.c,v 1.10 2005/06/06 01:08:46 miod Exp $ */ /* $NetBSD: adb.c,v 1.6 1999/08/16 06:28:09 tsubai Exp $ */ /*- @@ -154,7 +154,7 @@ adbattach(struct device *parent, struct device *self, void *aux) break; } - printf("%d targets\n", totaladbs); + printf(", %d targets\n", totaladbs); #if NAED > 0 /* ADB event device for compatibility */ diff --git a/sys/arch/sparc64/dev/com_ebus.c b/sys/arch/sparc64/dev/com_ebus.c index cc3dacc86d7..0e4900a13f8 100644 --- a/sys/arch/sparc64/dev/com_ebus.c +++ b/sys/arch/sparc64/dev/com_ebus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com_ebus.c,v 1.10 2004/09/23 18:55:45 miod Exp $ */ +/* $OpenBSD: com_ebus.c,v 1.11 2005/06/06 01:08:47 miod Exp $ */ /* $NetBSD: com_ebus.c,v 1.6 2001/07/24 19:27:10 eeh Exp $ */ /* @@ -173,9 +173,9 @@ com_ebus_attach(parent, self, aux) } if (OF_getproplen(ea->ea_node, "keyboard") == 0) - printf(", keyboard"); + printf(": keyboard"); else if (OF_getproplen(ea->ea_node, "mouse") == 0) - printf(", mouse"); + printf(": mouse"); /* Now attach the driver */ com_attach_subr(sc); diff --git a/sys/arch/sparc64/dev/z8530tty.c b/sys/arch/sparc64/dev/z8530tty.c index 24da5aed7cd..52fc7bcc412 100644 --- a/sys/arch/sparc64/dev/z8530tty.c +++ b/sys/arch/sparc64/dev/z8530tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: z8530tty.c,v 1.9 2003/10/03 16:44:50 miod Exp $ */ +/* $OpenBSD: z8530tty.c,v 1.10 2005/06/06 01:08:47 miod Exp $ */ /* $NetBSD: z8530tty.c,v 1.77 2001/05/30 15:24:24 lukem Exp $ */ /*- @@ -331,7 +331,7 @@ zstty_attach(parent, self, aux) if (strcmp(args->type, "keyboard") == 0 || strcmp(args->type, "mouse") == 0) - printf(", %s", args->type); + printf(": %s", args->type); printf("\n"); |