Skip to content

Commit

Permalink
Input: i8042 - enable DMI quirks on x86-64
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Bruce Duncan authored and Dmitry Torokhov committed Jan 30, 2008
1 parent 5799ddb commit b4d62de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/input/serio/i8042-x86ia64io.h
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit b4d62de

Please sign in to comment.