Commit b4d62de1 authored by Bruce Duncan's avatar Bruce Duncan Committed by Dmitry Torokhov

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=9664Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent 5799ddb5
......@@ -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;
......
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