Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Input: synaptics - don't complain about failed resets

On many laptops (Compaq, HP) the touchpad is so slow responding
to reset that keyboard controller times out. The device is reset
nonetheless and works fine. Kill the "synaptics reset failed"
error; if device is not working then other parts of
synaptics_query_hardware() will fail anyway.

Signed-off-by: Dmitry Torokhov <dtor@mail.ru>

+1 -1
+1 -1
drivers/input/mouse/synaptics.c
··· 185 185 int retries = 0; 186 186 187 187 while ((retries++ < 3) && psmouse_reset(psmouse)) 188 - printk(KERN_ERR "synaptics reset failed\n"); 188 + /* empty */; 189 189 190 190 if (synaptics_identify(psmouse)) 191 191 return -1;