diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-02-24 23:33:48 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-02-24 23:33:48 +0000 |
commit | f448621756b9fed1607c8e7d4d17e07407fb5345 (patch) | |
tree | 596eb3a64509be3a0996405adcf8aedb01ecef2d /sys/arch/hp300 | |
parent | 01b9267093c74d4c33428e8c9c2426a2ddc8e7b7 (diff) |
Don't generate noise before entering DDB from keyboard.
Diffstat (limited to 'sys/arch/hp300')
-rw-r--r-- | sys/arch/hp300/hp300/machdep.c | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/sys/arch/hp300/hp300/machdep.c b/sys/arch/hp300/hp300/machdep.c index 59743ab2705..056666b2795 100644 --- a/sys/arch/hp300/hp300/machdep.c +++ b/sys/arch/hp300/hp300/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.77 2002/01/23 17:51:52 art Exp $ */ +/* $OpenBSD: machdep.c,v 1.78 2002/02/24 23:33:47 miod Exp $ */ /* $NetBSD: machdep.c,v 1.121 1999/03/26 23:41:29 mycroft Exp $ */ /* @@ -1068,27 +1068,11 @@ nmihand(frame) /* Check for keyboard <CRTL>+<SHIFT>+<RESET>. */ if (kbdnmi()) { - printf("Got a keyboard NMI"); - - /* - * We can: - * - * - enter DDB - * - * - Start the crashandburn sequence - * - * - Ignore it. - */ #ifdef DDB if (db_console) { - printf(": entering debugger\n"); Debugger(); - } else - printf("\n"); -#else - printf(": ignoring\n"); + } #endif /* DDB */ - goto nmihand_out; /* no more work to do */ } |