From: James S. <jsi...@us...> - 2001-11-13 23:30:32
|
Update of /cvsroot/linuxconsole/ruby/linux/drivers/input In directory usw-pr-cvs1:/tmp/cvs-serv5288 Modified Files: Config.in Log Message: Added the ability to change the IO regions and IRQs for PS/2 devices. Some platforms need this. Index: Config.in =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/input/Config.in,v retrieving revision 1.56 retrieving revision 1.57 diff -u -d -r1.56 -r1.57 --- Config.in 2001/09/25 08:33:30 1.56 +++ Config.in 2001/11/13 23:30:29 1.57 @@ -10,6 +10,11 @@ bool 'PS/2 port support' CONFIG_INPUT_PS2 if [ "$CONFIG_INPUT_PS2" != "n" ]; then tristate ' i8042 aux+kbd controller' CONFIG_INPUT_I8042 + if [ "$CONFIG_INPUT_I8042" != "n" ]; then + hex ' Register Base Address' CONFIG_I8042_REG_BASE 60 + int ' PS/2 Keyboard IRQ' CONFIG_I8042_KBD_IRQ 1 + int ' PS/2 AUX IRQ' CONFIG_I8042_AUX_IRQ 12 + fi tristate ' ct82c710 aux controller' CONFIG_INPUT_CT82C710 tristate ' Q40 kbd controller' CONFIG_INPUT_Q40KBD tristate ' #Sun Ultra/AX, JavaStation 8042 kbd controller' CONFIG_INPUT_SUN8042 |