diff options
author | Dmitry Torokhov <dtor@insightbb.com> | 2007-02-18 01:40:24 -0500 |
---|---|---|
committer | Dmitry Torokhov <dtor@insightbb.com> | 2007-02-18 01:40:24 -0500 |
commit | a1cec06177386ecc320af643de11cfa77e8945bd (patch) | |
tree | 1c335b711acb5c2f9186da2d08da8b7a7810f755 /drivers/input/mouse/psmouse-base.c | |
parent | 8a03d9a498eaf02c8a118752050a5154852c13bf (diff) |
Input: psmouse - properly reset mouse on shutdown/suspend
Some people report that they need psmouse module unloaded
for suspend to ram/disk to work properly. Let's make port
cleanup behave the same way as driver unload.
This fixes "bad state" roblem on various HP laptops, such
as nx7400.
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/mouse/psmouse-base.c')
-rw-r--r-- | drivers/input/mouse/psmouse-base.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/drivers/input/mouse/psmouse-base.c b/drivers/input/mouse/psmouse-base.c index a0e4a033e2db..9a6e4b6bdbf4 100644 --- a/drivers/input/mouse/psmouse-base.c +++ b/drivers/input/mouse/psmouse-base.c | |||
@@ -987,8 +987,36 @@ static void psmouse_resync(struct work_struct *work) | |||
987 | static void psmouse_cleanup(struct serio *serio) | 987 | static void psmouse_cleanup(struct serio *serio) |
988 | { | 988 | { |
989 | struct psmouse *psmouse = serio_get_drvdata(serio); | 989 | struct psmouse *psmouse = serio_get_drvdata(serio); |
990 | struct psmouse *parent = NULL; | ||
991 | |||
992 | mutex_lock(&psmouse_mutex); | ||
993 | |||
994 | if (serio->parent && serio->id.type == SERIO_PS_PSTHRU) { | ||
995 | parent = serio_get_drvdata(serio->parent); | ||
996 | psmouse_deactivate(parent); | ||
997 | } | ||
998 | |||
999 | psmouse_deactivate(psmouse); | ||
1000 | |||
1001 | if (psmouse->cleanup) | ||
1002 | psmouse->cleanup(psmouse); | ||
990 | 1003 | ||
991 | psmouse_reset(psmouse); | 1004 | psmouse_reset(psmouse); |
1005 | |||
1006 | /* | ||
1007 | * Some boxes, such as HP nx7400, get terribly confused if mouse | ||
1008 | * is not fully enabled before suspending/shutting down. | ||
1009 | */ | ||
1010 | ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE); | ||
1011 | |||
1012 | if (parent) { | ||
1013 | if (parent->pt_deactivate) | ||
1014 | parent->pt_deactivate(parent); | ||
1015 | |||
1016 | psmouse_activate(parent); | ||
1017 | } | ||
1018 | |||
1019 | mutex_unlock(&psmouse_mutex); | ||
992 | } | 1020 | } |
993 | 1021 | ||
994 | /* | 1022 | /* |