diff options
author | Stephen Hemminger <shemminger@osdl.org> | 2006-10-17 13:20:51 -0400 |
---|---|---|
committer | Stephen Hemminger <shemminger@osdl.org> | 2006-10-17 13:20:51 -0400 |
commit | e561a83be5c9cada5fa3733efdff67a2098a0c8e (patch) | |
tree | f8c85b3dc8f7af7dfe7ec5cf30c6002ea45e82e1 /drivers/net/sky2.c | |
parent | 2bffc23a01a489ad46ba7d61a1a657cecec87cc8 (diff) |
sky2: turn of workaround timer
The workaround timer is not needed in most systems with proper IRQ
routing and by perodically waking up it adds to laptop power consumption.
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Diffstat (limited to 'drivers/net/sky2.c')
-rw-r--r-- | drivers/net/sky2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/sky2.c b/drivers/net/sky2.c index 9e31efeea7c8..bd5ccae53879 100644 --- a/drivers/net/sky2.c +++ b/drivers/net/sky2.c | |||
@@ -96,9 +96,9 @@ static int disable_msi = 0; | |||
96 | module_param(disable_msi, int, 0); | 96 | module_param(disable_msi, int, 0); |
97 | MODULE_PARM_DESC(disable_msi, "Disable Message Signaled Interrupt (MSI)"); | 97 | MODULE_PARM_DESC(disable_msi, "Disable Message Signaled Interrupt (MSI)"); |
98 | 98 | ||
99 | static int idle_timeout = 100; | 99 | static int idle_timeout = 0; |
100 | module_param(idle_timeout, int, 0); | 100 | module_param(idle_timeout, int, 0); |
101 | MODULE_PARM_DESC(idle_timeout, "Idle timeout workaround for lost interrupts (ms)"); | 101 | MODULE_PARM_DESC(idle_timeout, "Watchdog timer for lost interrupts (ms)"); |
102 | 102 | ||
103 | static const struct pci_device_id sky2_id_table[] = { | 103 | static const struct pci_device_id sky2_id_table[] = { |
104 | { PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, 0x9000) }, | 104 | { PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, 0x9000) }, |