Input: i8042 - add Gigabyte T1005 series netbooks to noloop table

They all define their chassis type as "Other" and therefore are not
categorized as "laptops" by the driver, which tries to perform AUX IRQ
delivery test which fails and causes touchpad not working.

Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=42620
Cc: stable@kernel.org
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

Changed files
+14
drivers
input
+14
drivers/input/serio/i8042-x86ia64io.h
··· 177 177 }, 178 178 }, 179 179 { 180 + /* Gigabyte T1005 - defines wrong chassis type ("Other") */ 181 + .matches = { 182 + DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"), 183 + DMI_MATCH(DMI_PRODUCT_NAME, "T1005"), 184 + }, 185 + }, 186 + { 187 + /* Gigabyte T1005M/P - defines wrong chassis type ("Other") */ 188 + .matches = { 189 + DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"), 190 + DMI_MATCH(DMI_PRODUCT_NAME, "T1005M/P"), 191 + }, 192 + }, 193 + { 180 194 .matches = { 181 195 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), 182 196 DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion dv9700"),