Commit 8bf4215e8a7f7416d7258af211488aabf65863c3

Authored by Jiri Kosina
Committed by Dmitry Torokhov
1 parent 3cb93db6e8

Input: i8042 - add i8042.noloop quirk for MS Virtual Machine

When booting under Microsoft Virtual Machine, the noloop quirk is
needed, otherwise PS/2 mouse is not properly detected.

Reported-by: Lawrence Steeger <vendor@russte.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>

Showing 1 changed file with 8 additions and 0 deletions Side-by-side Diff

drivers/input/serio/i8042-x86ia64io.h
... ... @@ -110,6 +110,14 @@
110 110 DMI_MATCH(DMI_PRODUCT_VERSION, "5a"),
111 111 },
112 112 },
  113 + {
  114 + .ident = "Microsoft Virtual Machine",
  115 + .matches = {
  116 + DMI_MATCH(DMI_SYS_VENDOR, "Microsoft Corporation"),
  117 + DMI_MATCH(DMI_PRODUCT_NAME, "Virtual Machine"),
  118 + DMI_MATCH(DMI_PRODUCT_VERSION, "VS2005R2"),
  119 + },
  120 + },
113 121 { }
114 122 };
115 123