2005-11-20 06:47:35

by Dmitry Torokhov

[permalink] [raw]
Subject: [git pull 07/14] wistron - disable wifi/bluetooth on suspend

From: Miloslav Trmac <[email protected]>

Input: wistron - disable wifi/bluetooth on suspend

Try to save battery power by disabling wifi and bluetooth on suspend.

Signed-off-by: Miloslav Trmac <[email protected]>
Signed-off-by: Dmitry Torokhov <[email protected]>
---

drivers/input/misc/wistron_btns.c | 6 ++++++
1 files changed, 6 insertions(+)

Index: work/drivers/input/misc/wistron_btns.c
===================================================================
--- work.orig/drivers/input/misc/wistron_btns.c
+++ work/drivers/input/misc/wistron_btns.c
@@ -451,6 +451,12 @@ static int wistron_suspend(struct platfo
{
del_timer_sync(&poll_timer);

+ if (have_wifi)
+ bios_set_state(WIFI, 0);
+
+ if (have_bluetooth)
+ bios_set_state(BLUETOOTH, 0);
+
return 0;
}