Update of /cvsroot/linuxconsole/ruby/ruby-2.6/drivers/char
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3063
Modified Files:
keyboard.c
Log Message:
Some of the functions are not static in our tree.
Index: keyboard.c
===================================================================
RCS file: /cvsroot/linuxconsole/ruby/ruby-2.6/drivers/char/keyboard.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- keyboard.c 5 Apr 2005 18:21:53 -0000 1.17
+++ keyboard.c 2 Jul 2005 20:03:47 -0000 1.18
@@ -164,7 +164,7 @@
/*
* Making beeps and bells.
*/
-static void kd_nosound(unsigned long private)
+void kd_nosound(unsigned long private)
{
struct input_handle *handle = (struct input_handle *) private;
@@ -236,7 +236,7 @@
}
}
-static void puts_queue(struct vc_data *vc, char *cp)
+void puts_queue(struct vc_data *vc, char *cp)
{
struct tty_struct *tty = vc->vc_tty;
@@ -982,7 +982,7 @@
put_queue(vc, data);
}
-void kbd_keycode(struct vt_struct *vt, unsigned int keycode, int down, int hw_raw)
+static void kbd_keycode(struct vt_struct *vt, unsigned int keycode, int down, int hw_raw)
{
struct vc_data *vc = vt->fg_console;
unsigned short keysym, *key_map;
|