From: James S. <jsi...@us...> - 2002-07-12 17:17:55
|
Update of /cvsroot/linuxconsole/ruby/linux/arch/ppc/kernel In directory usw-pr-cvs1:/tmp/cvs-serv11287/kernel Modified Files: m8260_setup.c m8xx_setup.c ppc4xx_setup.c Log Message: Fixes to removal old keyboard code. Index: m8260_setup.c =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/arch/ppc/kernel/m8260_setup.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- m8260_setup.c 14 Mar 2002 22:32:22 -0000 1.1 +++ m8260_setup.c 12 Jul 2002 17:17:52 -0000 1.2 @@ -266,14 +266,6 @@ ppc_md.find_end_of_memory = m8260_find_end_of_memory; ppc_md.setup_io_mappings = m8260_map_io; - - ppc_md.kbd_setkeycode = NULL; - ppc_md.kbd_getkeycode = NULL; - ppc_md.kbd_translate = NULL; - ppc_md.kbd_unexpected_up = NULL; - ppc_md.kbd_leds = NULL; - ppc_md.kbd_init_hw = NULL; - ppc_md.ppc_kbd_sysrq_xlate = NULL; } /* Mainly for ksyms. Index: m8xx_setup.c =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/arch/ppc/kernel/m8xx_setup.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- m8xx_setup.c 18 Jun 2002 18:51:54 -0000 1.2 +++ m8xx_setup.c 12 Jul 2002 17:17:52 -0000 1.3 @@ -396,14 +396,6 @@ ppc_md.find_end_of_memory = m8xx_find_end_of_memory; ppc_md.setup_io_mappings = m8xx_map_io; - ppc_md.kbd_setkeycode = NULL; - ppc_md.kbd_getkeycode = NULL; - ppc_md.kbd_translate = NULL; - ppc_md.kbd_unexpected_up = NULL; - ppc_md.kbd_leds = NULL; - ppc_md.kbd_init_hw = NULL; - ppc_md.ppc_kbd_sysrq_xlate = NULL; - #if defined(CONFIG_BLK_DEV_IDE) || defined(CONFIG_BLK_DEV_IDE_MODULE) m8xx_ide_init(); #endif Index: ppc4xx_setup.c =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/arch/ppc/kernel/ppc4xx_setup.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- ppc4xx_setup.c 25 May 2002 20:32:00 -0000 1.4 +++ ppc4xx_setup.c 12 Jul 2002 17:17:52 -0000 1.5 @@ -58,16 +58,6 @@ /* Function Prototypes */ extern void abort(void); extern void ppc4xx_find_bridges(void); - -extern int pckbd_setkeycode(unsigned int scancode, unsigned int keycode); -extern int pckbd_getkeycode(unsigned int scancode); -extern int pckbd_pretranslate(unsigned char scancode, char raw_mode); -extern int pckbd_translate(unsigned char scancode, unsigned char *keycode, - char raw_mode); -extern char pckbd_unexpected_up(unsigned char keycode); -extern void pckbd_leds(unsigned char leds); -extern void pckbd_init_hw(void); - extern void ppc4xx_wdt_heartbeat(void); extern int wdt_enable; extern unsigned long wdt_period; @@ -352,19 +342,6 @@ #ifdef CONFIG_DEBUG_TEXT ppc_md.progress = ppc4xx_progress; -#endif - -#if defined(CONFIG_VT) && defined(CONFIG_PC_KEYBOARD) -#if defined(CONFIG_REDWOOD_4) && defined(CONFIG_STB_KB) - redwood_irkb_init(); -#else - ppc_md.kbd_setkeycode = pckbd_setkeycode; - ppc_md.kbd_getkeycode = pckbd_getkeycode; - ppc_md.kbd_translate = pckbd_translate; - ppc_md.kbd_unexpected_up = pckbd_unexpected_up; - ppc_md.kbd_leds = pckbd_leds; - ppc_md.kbd_init_hw = pckbd_init_hw; -#endif #endif /* |