diff options
author | Paul Menzel <pmenzel@molgen.mpg.de> | 2017-10-31 17:21:23 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-03-10 20:37:25 +0000 |
commit | 2d6560873313bf7c2a6e02223b77a4510482cf28 (patch) | |
tree | 3060060faa533eafea6a24e2b26b2185f55759c9 | |
parent | 2c18ba5bd7e279cd9e55fcfc93c180d52296a374 (diff) | |
download | coreboot-2d6560873313bf7c2a6e02223b77a4510482cf28.tar.xz |
winbond/w83667hg-a: Disable mouse controller also during resume
There is no reason to not disable the controller during resume. That
way, no ASL is needed.
Change-Id: I282a03647ee0958abb118fafe306abe5782db71c
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/22286
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
-rw-r--r-- | src/superio/winbond/w83667hg-a/superio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/superio/winbond/w83667hg-a/superio.c b/src/superio/winbond/w83667hg-a/superio.c index bc7bd92d03..685062170d 100644 --- a/src/superio/winbond/w83667hg-a/superio.c +++ b/src/superio/winbond/w83667hg-a/superio.c @@ -36,7 +36,7 @@ static void w83667hg_a_init(struct device *dev) mouse_detected = pc_keyboard_init(PROBE_AUX_DEVICE); - if (!mouse_detected && !acpi_is_wakeup_s3()) { + if (!mouse_detected) { printk(BIOS_INFO, "%s: Disable mouse controller.", __func__); pnp_enter_conf_mode(dev); |