Update of /cvsroot/linuxconsole/ruby/linux/drivers/char
In directory usw-pr-cvs1:/tmp/cvs-serv8427
Modified Files:
vt_ioctl.c
Log Message:
For now disable mk_sound. It caused problems with key repeat I believe.
Index: vt_ioctl.c
===================================================================
RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/char/vt_ioctl.c,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -d -r1.64 -r1.65
--- vt_ioctl.c 2001/11/13 20:10:33 1.64
+++ vt_ioctl.c 2001/11/14 17:51:33 1.65
@@ -94,7 +94,7 @@
* is in something like msecs. Due to the various underlying
* types of hardware we can't convert it to milliseconds. Sorry
* but the console api sucks.
- */
+
input_event(handle->dev, EV_REP, REP_PERIOD, period);
input_event(handle->dev, EV_REP, REP_DELAY, duration);
@@ -102,6 +102,7 @@
input_event(handle->dev, EV_SND, SND_BELL, 1);
else
input_event(handle->dev, EV_SND, SND_BELL, 0);
+ */
}
/*
|