Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/pckbc now that wscons_glue is gone we can back out r...



details:   https://anonhg.NetBSD.org/src/rev/5cc02939376d
branches:  trunk
changeset: 472987:5cc02939376d
user:      drochner <drochner%NetBSD.org@localhost>
date:      Sat May 15 15:55:55 1999 +0000

description:
now that wscons_glue is gone we can back out rev. 1.16 (which made
"pckbd_enable()" polling to deal with calls without process context)

diffstat:

 sys/dev/pckbc/pckbd.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 16f026bfe555 -r 5cc02939376d sys/dev/pckbc/pckbd.c
--- a/sys/dev/pckbc/pckbd.c     Sat May 15 15:42:23 1999 +0000
+++ b/sys/dev/pckbc/pckbd.c     Sat May 15 15:55:55 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pckbd.c,v 1.17 1999/03/26 12:39:13 drochner Exp $ */
+/* $NetBSD: pckbd.c,v 1.18 1999/05/15 15:55:55 drochner Exp $ */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -370,7 +370,7 @@
 
                cmd[0] = KBC_ENABLE;
                res = pckbc_enqueue_cmd(sc->id->t_kbctag, sc->id->t_kbcslot,
-                                       cmd, 1, 0, 0, 0);
+                                       cmd, 1, 0, 1, 0);
                if (res) {
                        printf("pckbd_enable: command error\n");
                        return (res);
@@ -387,7 +387,7 @@
 
                cmd[0] = KBC_DISABLE;
                res = pckbc_enqueue_cmd(sc->id->t_kbctag, sc->id->t_kbcslot,
-                                       cmd, 1, 0, 0, 0);
+                                       cmd, 1, 0, 1, 0);
                if (res) {
                        printf("pckbd_disable: command error\n");
                        return (res);



Home | Main Index | Thread Index | Old Index