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/serio/i8042-x86ia64io.h | |
parent | 5799ddb54e829c92b23b7a3bf5133923cb908116 (diff) |
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/serio/i8042-x86ia64io.h')
-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) | |||
63 | outb(val, I8042_COMMAND_REG); | 63 | outb(val, I8042_COMMAND_REG); |
64 | } | 64 | } |
65 | 65 | ||
66 | #if defined(__i386__) | 66 | #if defined(__i386__) || defined(__x86_64__) |
67 | 67 | ||
68 | #include <linux/dmi.h> | 68 | #include <linux/dmi.h> |
69 | 69 | ||
@@ -563,7 +563,7 @@ static int __init i8042_platform_init(void) | |||
563 | i8042_reset = 1; | 563 | i8042_reset = 1; |
564 | #endif | 564 | #endif |
565 | 565 | ||
566 | #if defined(__i386__) | 566 | #if defined(__i386__) || defined(__x86_64__) |
567 | if (dmi_check_system(i8042_dmi_noloop_table)) | 567 | if (dmi_check_system(i8042_dmi_noloop_table)) |
568 | i8042_noloop = 1; | 568 | i8042_noloop = 1; |
569 | 569 | ||