diff options
author | Ivo van Doorn <ivdoorn@gmail.com> | 2007-10-06 08:14:06 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:55:11 -0400 |
commit | 81873e9ccd5731ca77027bdb32b34904e7af25d0 (patch) | |
tree | 887b887328ffb43cdba1acff995f51eed4eb26d1 /drivers/net/wireless/rt2x00/rt61pci.c | |
parent | 5886d0dbf5b4226c6b6c8c44c555c5dd83c67b02 (diff) |
[PATCH] rt2x00: Fix rfkill handling
As reported by Modestas Vainius, enabling rkfill in 1 driver and
disabling it in a second could cause a NULL pointer exception when
the rfkill-disabled driver still sets the CONFIG_SUPPORT_HW_BUTTON flag.
Furthermore, rfkill expects the timeout as a value in milliseconds
instead of jiffies. Also increase the timeout to a second,
since this 250ms would be overkill.
Also the flag DEVICE_ENABLED_RADIO_HW is causing problems
for devices which do not support the hardware button
while rfkill is enabled in the driver.
To remidy this we should inverse the flag and its meaning,
rename the flag to DEVICE_DISABLED_RADIO_HW this means that
by default the radio is enabled by the hardware button (if present)
and can only be disabled explicitely.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt61pci.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt61pci.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/wireless/rt2x00/rt61pci.c b/drivers/net/wireless/rt2x00/rt61pci.c index 588b22b16419..1c3937a3f9dc 100644 --- a/drivers/net/wireless/rt2x00/rt61pci.c +++ b/drivers/net/wireless/rt2x00/rt61pci.c | |||
@@ -269,6 +269,8 @@ static int rt61pci_rfkill_poll(struct rt2x00_dev *rt2x00dev) | |||
269 | rt2x00pci_register_read(rt2x00dev, MAC_CSR13, ®); | 269 | rt2x00pci_register_read(rt2x00dev, MAC_CSR13, ®); |
270 | return rt2x00_get_field32(reg, MAC_CSR13_BIT5);; | 270 | return rt2x00_get_field32(reg, MAC_CSR13_BIT5);; |
271 | } | 271 | } |
272 | #else | ||
273 | #define rt61pci_rfkill_poll NULL | ||
272 | #endif /* CONFIG_RT61PCI_RFKILL */ | 274 | #endif /* CONFIG_RT61PCI_RFKILL */ |
273 | 275 | ||
274 | /* | 276 | /* |
@@ -2090,8 +2092,10 @@ static int rt61pci_init_eeprom(struct rt2x00_dev *rt2x00dev) | |||
2090 | /* | 2092 | /* |
2091 | * Detect if this device has an hardware controlled radio. | 2093 | * Detect if this device has an hardware controlled radio. |
2092 | */ | 2094 | */ |
2095 | #ifdef CONFIG_RT61PCI_RFKILL | ||
2093 | if (rt2x00_get_field16(eeprom, EEPROM_ANTENNA_HARDWARE_RADIO)) | 2096 | if (rt2x00_get_field16(eeprom, EEPROM_ANTENNA_HARDWARE_RADIO)) |
2094 | __set_bit(CONFIG_SUPPORT_HW_BUTTON, &rt2x00dev->flags); | 2097 | __set_bit(CONFIG_SUPPORT_HW_BUTTON, &rt2x00dev->flags); |
2098 | #endif /* CONFIG_RT61PCI_RFKILL */ | ||
2095 | 2099 | ||
2096 | /* | 2100 | /* |
2097 | * Read frequency offset and RF programming sequence. | 2101 | * Read frequency offset and RF programming sequence. |
@@ -2531,9 +2535,7 @@ static const struct rt2x00lib_ops rt61pci_rt2x00_ops = { | |||
2531 | .initialize = rt2x00pci_initialize, | 2535 | .initialize = rt2x00pci_initialize, |
2532 | .uninitialize = rt2x00pci_uninitialize, | 2536 | .uninitialize = rt2x00pci_uninitialize, |
2533 | .set_device_state = rt61pci_set_device_state, | 2537 | .set_device_state = rt61pci_set_device_state, |
2534 | #ifdef CONFIG_RT61PCI_RFKILL | ||
2535 | .rfkill_poll = rt61pci_rfkill_poll, | 2538 | .rfkill_poll = rt61pci_rfkill_poll, |
2536 | #endif /* CONFIG_RT61PCI_RFKILL */ | ||
2537 | .link_stats = rt61pci_link_stats, | 2539 | .link_stats = rt61pci_link_stats, |
2538 | .reset_tuner = rt61pci_reset_tuner, | 2540 | .reset_tuner = rt61pci_reset_tuner, |
2539 | .link_tuner = rt61pci_link_tuner, | 2541 | .link_tuner = rt61pci_link_tuner, |