diff options
author | Bruce Duncan <B.W.Duncan@sms.ed.ac.uk> | 2008-01-30 16:34:34 -0500 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2008-01-30 16:34:34 -0500 |
commit | b4d62de16283d096e2e0dfe9d3395f5ba1b1352e (patch) | |
tree | a917aafd86a393d0ee7ef8d050ce10f56999be14 /drivers/input | |
parent | 5799ddb54e829c92b23b7a3bf5133923cb908116 (diff) | |
download | talos-op-linux-b4d62de16283d096e2e0dfe9d3395f5ba1b1352e.tar.gz talos-op-linux-b4d62de16283d096e2e0dfe9d3395f5ba1b1352e.zip |
Input: i8042 - enable DMI quirks on x86-64
If firmware does not implement AUX_LOOP comand in 32 bit mode it
is unlikely to implement it in 64 bit mode. Same goes for active
multiplexing. See:
http://bugzilla.kernel.org/show_bug.cgi?id=9664
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/serio/i8042-x86ia64io.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/input/serio/i8042-x86ia64io.h b/drivers/input/serio/i8042-x86ia64io.h index 0ceb84dc90fc..9efb90b52e32 100644 --- a/drivers/input/serio/i8042-x86ia64io.h +++ b/drivers/input/serio/i8042-x86ia64io.h @@ -63,7 +63,7 @@ static inline void i8042_write_command(int val) outb(val, I8042_COMMAND_REG); } -#if defined(__i386__) +#if defined(__i386__) || defined(__x86_64__) #include <linux/dmi.h> @@ -563,7 +563,7 @@ static int __init i8042_platform_init(void) i8042_reset = 1; #endif -#if defined(__i386__) +#if defined(__i386__) || defined(__x86_64__) if (dmi_check_system(i8042_dmi_noloop_table)) i8042_noloop = 1; |