Commit edc01f56 authored by Peter Chubb's avatar Peter Chubb Committed by Vojtech Pavlik

input: The appended fix is needed on I2000 machines, to map the

legacy ISA interrupt onto the actual interrupt provided.  Otherwise
the mouse and keyboard won't work.  Patch against 2.5.70.
parent fb3e5c4e
......@@ -20,11 +20,14 @@
*/
#ifdef __alpha__
#define I8042_KBD_IRQ 1
#define I8042_AUX_IRQ (RTC_PORT(0) == 0x170 ? 9 : 12) /* Jensen is special */
# define I8042_KBD_IRQ 1
# define I8042_AUX_IRQ (RTC_PORT(0) == 0x170 ? 9 : 12) /* Jensen is special */
#elif defined(__ia64__)
# define I8042_KBD_IRQ isa_irq_to_vector(1)
# define I8042_AUX_IRQ isa_irq_to_vector(12)
#else
#define I8042_KBD_IRQ 1
#define I8042_AUX_IRQ 12
# define I8042_KBD_IRQ 1
# define I8042_AUX_IRQ 12
#endif
/*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment