diff options
author | Ivo van Doorn <ivdoorn@gmail.com> | 2007-10-06 08:12:13 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:55:08 -0400 |
commit | 3a84732a5c9758a4bd59088787cac23508ef8b62 (patch) | |
tree | a67cb02ef5f8ebd5cd1651c746d0e7c9c478ce68 /drivers/net/wireless | |
parent | 4abee4bbd771ce42b9a0a19be11264721aa0e3ed (diff) |
[PATCH] rt2x00: Remove radio check from rt2x00lib_toggle_rx
Don't check if the radio is enabled in rt2x00lib_toggle_rx,
this is required since the link tuner should be disabled
when shutting down the device. The remaining calls inside the
rt2x00lib_toggle_rx handler should deliver no problems when
called while the radio is done.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00dev.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00dev.c b/drivers/net/wireless/rt2x00/rt2x00dev.c index 0216096c88cd..b6a5c3481126 100644 --- a/drivers/net/wireless/rt2x00/rt2x00dev.c +++ b/drivers/net/wireless/rt2x00/rt2x00dev.c | |||
@@ -164,9 +164,6 @@ void rt2x00lib_toggle_rx(struct rt2x00_dev *rt2x00dev, int enable) | |||
164 | { | 164 | { |
165 | enum dev_state state = enable ? STATE_RADIO_RX_ON : STATE_RADIO_RX_OFF; | 165 | enum dev_state state = enable ? STATE_RADIO_RX_ON : STATE_RADIO_RX_OFF; |
166 | 166 | ||
167 | if (!test_bit(DEVICE_ENABLED_RADIO, &rt2x00dev->flags)) | ||
168 | return; | ||
169 | |||
170 | /* | 167 | /* |
171 | * When we are disabling the RX, we should also stop the link tuner. | 168 | * When we are disabling the RX, we should also stop the link tuner. |
172 | */ | 169 | */ |