Commit ba1889da authored by Dmitry Torokhov's avatar Dmitry Torokhov

Psmouse: some hardware does not ACK "disable streaming mode" command.

         Since we already have an idea that it's a mouse device that
         is present (from its response to GET ID command), instead of
         aborting, issue a warning and continue.
parent b6884d28
...@@ -442,7 +442,7 @@ static int psmouse_probe(struct psmouse *psmouse) ...@@ -442,7 +442,7 @@ static int psmouse_probe(struct psmouse *psmouse)
*/ */
if (psmouse_command(psmouse, NULL, PSMOUSE_CMD_RESET_DIS)) if (psmouse_command(psmouse, NULL, PSMOUSE_CMD_RESET_DIS))
return -1; printk(KERN_WARNING "psmouse.c: Failed to reset mouse on %s\n", psmouse->serio->phys);
/* /*
* And here we try to determine if it has any extensions over the * And here we try to determine if it has any extensions over the
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment