After commit commit 58f1eae48e53 ("Input: elan_i2c - use iap_version to get firmware information") the touchpad on the Asus X205TA does not work anymore, iap version is 0, so modify the switch-case index. The 0x08 case was added for the X205TA in commit 534fcb3bdaab ("Input: elan_i2c - enable ELAN0100 acpi panels") Signed-off-by: Michele Curti <michele.curti@xxxxxxxxx> --- drivers/input/mouse/elan_i2c_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/input/mouse/elan_i2c_core.c b/drivers/input/mouse/elan_i2c_core.c index fa94530..c40a02d 100644 --- a/drivers/input/mouse/elan_i2c_core.c +++ b/drivers/input/mouse/elan_i2c_core.c @@ -98,7 +98,7 @@ static int elan_get_fwinfo(u8 iap_version, u16 *validpage_count, u16 *signature_address) { switch (iap_version) { - case 0x08: + case 0x00: *validpage_count = 512; break; case 0x09: -- 2.5.1 -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html