diff options
| author | Dmitry Torokhov <dtor_core@ameritech.net> | 2004-03-02 14:31:24 -0500 |
|---|---|---|
| committer | Dmitry Torokhov <dtor_core@ameritech.net> | 2004-03-02 14:31:24 -0500 |
| commit | ba1889da3884de60f399ccb8e8b9782b51d0da00 (patch) | |
| tree | 583315736c0ddf3b29fd0bbe34b4ff792f40aae8 /drivers/input | |
| parent | b6884d2806884ab681c4c2886d13c1b7028ea5a2 (diff) | |
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.
Diffstat (limited to 'drivers/input')
| -rw-r--r-- | drivers/input/mouse/psmouse-base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/mouse/psmouse-base.c b/drivers/input/mouse/psmouse-base.c index d9906d7aaddb..41e9a5ce1403 100644 --- a/drivers/input/mouse/psmouse-base.c +++ b/drivers/input/mouse/psmouse-base.c @@ -442,7 +442,7 @@ static int psmouse_probe(struct psmouse *psmouse) */ 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 |
