diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-01-08 17:25:07 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-01-08 17:25:07 +0000 |
commit | 20a16460fc3dadc3670f74649d9efd23d4e1672f (patch) | |
tree | 253795acca41e7bc22f707e9f28e6558be0adacd /sys/arch/mac68k/dev/akbd.c | |
parent | e27fb7cead158776491996ec81b38e8d51dcbd33 (diff) |
Display unhandled adb devices as "whatever at adb0 addr X" like all buses do;
while there, make the detailed descriptions dependent on ADBVERBOSE (enabled
in GENERIC) instead of DIAGNOSTIC.
Diffstat (limited to 'sys/arch/mac68k/dev/akbd.c')
-rw-r--r-- | sys/arch/mac68k/dev/akbd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/mac68k/dev/akbd.c b/sys/arch/mac68k/dev/akbd.c index dbe3ccd8951..a79ad6434b8 100644 --- a/sys/arch/mac68k/dev/akbd.c +++ b/sys/arch/mac68k/dev/akbd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: akbd.c,v 1.2 2006/01/08 16:35:25 miod Exp $ */ +/* $OpenBSD: akbd.c,v 1.3 2006/01/08 17:25:05 miod Exp $ */ /* $NetBSD: akbd.c,v 1.17 2005/01/15 16:00:59 chs Exp $ */ /* @@ -136,6 +136,7 @@ akbdattach(struct device *parent, struct device *self, void *aux) adbinfo.siServiceRtPtr = (Ptr)adb_kbd_asmcomplete; adbinfo.siDataAreaAddr = (caddr_t)sc; + printf(": "); switch (sc->handler_id) { case ADB_STDKBD: printf("standard keyboard\n"); |