Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/wscons Ad a debug message. (With { } this time.)



details:   https://anonhg.NetBSD.org/src/rev/1ad9d62ece0d
branches:  trunk
changeset: 517128:1ad9d62ece0d
user:      augustss <augustss%NetBSD.org@localhost>
date:      Wed Nov 07 13:36:43 2001 +0000

description:
Ad a debug message.  (With { } this time.)

diffstat:

 sys/dev/wscons/wskbd.c |  8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diffs (31 lines):

diff -r 7f747f148914 -r 1ad9d62ece0d sys/dev/wscons/wskbd.c
--- a/sys/dev/wscons/wskbd.c    Wed Nov 07 12:57:33 2001 +0000
+++ b/sys/dev/wscons/wskbd.c    Wed Nov 07 13:36:43 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: wskbd.c,v 1.55 2001/10/27 13:52:57 augustss Exp $ */
+/* $NetBSD: wskbd.c,v 1.56 2001/11/07 13:36:43 augustss Exp $ */
 
 /*
  * Copyright (c) 1996, 1997 Christopher G. Demetriou.  All rights reserved.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: wskbd.c,v 1.55 2001/10/27 13:52:57 augustss Exp $");
+__KERNEL_RCSID(0, "$NetBSD: wskbd.c,v 1.56 2001/11/07 13:36:43 augustss Exp $");
 
 /*
  * Copyright (c) 1992, 1993
@@ -728,9 +728,11 @@
                return (0);
 
 #if NWSMUX > 0
-       if (sc->sc_base.me_parent != NULL)
+       if (sc->sc_base.me_parent != NULL) {
                /* Grab the keyboard out of the greedy hands of the mux. */
+               DPRINTF(("wskbdopen: detach\n"));
                wsmux_detach_sc(&sc->sc_base);
+       }
 #endif
 
        if (sc->sc_base.me_evp != NULL)



Home | Main Index | Thread Index | Old Index