summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2005-01-15 17:51:58 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2005-01-15 17:51:58 +0000
commit4343e7c5e74db0c7e5a111827f4625f4ea9b894a (patch)
treec9c06fc5285302ffe9f7aa440826a062d0335c58
parent29457e1e32cb0aa81700f37a8483f28f2f744b89 (diff)
turn off debug stuff for now
-rw-r--r--sys/arch/zaurus/dev/zaurus_kbd.c15
1 files changed, 11 insertions, 4 deletions
diff --git a/sys/arch/zaurus/dev/zaurus_kbd.c b/sys/arch/zaurus/dev/zaurus_kbd.c
index 7e5b74b90a8..0f077372b5d 100644
--- a/sys/arch/zaurus/dev/zaurus_kbd.c
+++ b/sys/arch/zaurus/dev/zaurus_kbd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: zaurus_kbd.c,v 1.6 2005/01/15 05:58:53 drahn Exp $ */
+/* $OpenBSD: zaurus_kbd.c,v 1.7 2005/01/15 17:51:57 deraadt Exp $ */
/*
* Copyright (c) 2005 Dale Rahn <drahn@openbsd.org>
*
@@ -284,9 +284,10 @@ zkbd_poll(void *v)
type = sc->sc_keystate[i] ? WSCONS_EVENT_KEY_DOWN :
WSCONS_EVENT_KEY_UP;
-/*
-printf("key %d %s\n", i, sc->sc_keystate[i] ? "pressed" : "released");
-*/
+#if 0
+ printf("key %d %s\n", i,
+ sc->sc_keystate[i] ? "pressed" : "released");
+#endif
wskbd_input(sc->sc_wskbddev, type, i);
@@ -304,21 +305,27 @@ printf("key %d %s\n", i, sc->sc_keystate[i] ? "pressed" : "released");
int
zkbd_on(void *v)
{
+#if 0
printf("on key pressed\n");
+#endif
return 1;
}
int
zkbd_sync(void *v)
{
+#if 0
printf("sync button pressed\n");
+#endif
return 1;
}
int
zkbd_hinge(void *v)
{
+#if 0
printf("hinge event pressed\n");
+#endif
return 1;
}