[parisc-linux-cvs] linux varenet
Thibaut VARENE
varenet@esiee.fr
Sat, 2 Aug 2003 21:09:35 +0200
This is a multi-part message in MIME format.
--Multipart_Sat__2_Aug_2003_21:09:35_+0200_102ebd88
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
On Sat, 2 Aug 2003 13:05:51 -0600 (MDT)
varenet@parisc-linux.org (Thibaut Varene) wrote:
> CVSROOT: /var/cvs
> Module name: linux
> Changes by: varenet 03/08/02 13:05:51
>
> Modified files:
> drivers/hil : hil_kbd.c
>
> Log message:
> missing semicolon
>
here's the full and correct hack^H^H^H^Hpatch.
Thibaut VARENE
The PA/Linux ESIEE Team
http://pateam.esiee.fr/
--Multipart_Sat__2_Aug_2003_21:09:35_+0200_102ebd88
Content-Type: text/plain;
name="hil.diff"
Content-Disposition: attachment;
filename="hil.diff"
Content-Transfer-Encoding: 7bit
Index: hil_kbd.c
===================================================================
RCS file: /var/cvs/linux/drivers/hil/hil_kbd.c,v
retrieving revision 1.8
diff -u -p -r1.8 hil_kbd.c
--- hil_kbd.c 2 Aug 2003 07:42:52 -0000 1.8
+++ hil_kbd.c 2 Aug 2003 18:54:36 -0000
@@ -38,6 +38,7 @@
#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
+#include <asm/keyboard.h> /* unregister_kbd_ops() */
#ifdef DEBUG /* DEBUG */
#undef input_report_key
@@ -403,6 +404,7 @@ static void hil_kbd_connect(struct serio
/* XXX: HACK !!!
* remove this call if hp_psaux.c/hp_keyb.c is converted
* to the input layer... */
+ void register_ps2_keybfuncs(void); /* see char/hp_keyb.c */
register_ps2_keybfuncs();
#endif
--Multipart_Sat__2_Aug_2003_21:09:35_+0200_102ebd88--