diff options
Diffstat (limited to 'drivers/net/wireless/b43legacy/b43legacy.h')
-rw-r--r-- | drivers/net/wireless/b43legacy/b43legacy.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/net/wireless/b43legacy/b43legacy.h b/drivers/net/wireless/b43legacy/b43legacy.h index 34a6277051a1..746de2ff498c 100644 --- a/drivers/net/wireless/b43legacy/b43legacy.h +++ b/drivers/net/wireless/b43legacy/b43legacy.h | |||
@@ -411,7 +411,6 @@ struct b43legacy_phy { | |||
411 | u8 calibrated:1; | 411 | u8 calibrated:1; |
412 | u8 radio_rev; /* Radio revision */ | 412 | u8 radio_rev; /* Radio revision */ |
413 | 413 | ||
414 | bool radio_on; /* Radio switched on/off */ | ||
415 | bool locked; /* Only used in b43legacy_phy_{un}lock() */ | 414 | bool locked; /* Only used in b43legacy_phy_{un}lock() */ |
416 | bool dyn_tssi_tbl; /* tssi2dbm is kmalloc()ed. */ | 415 | bool dyn_tssi_tbl; /* tssi2dbm is kmalloc()ed. */ |
417 | 416 | ||
@@ -420,6 +419,16 @@ struct b43legacy_phy { | |||
420 | bool aci_wlan_automatic; | 419 | bool aci_wlan_automatic; |
421 | bool aci_hw_rssi; | 420 | bool aci_hw_rssi; |
422 | 421 | ||
422 | /* Radio switched on/off */ | ||
423 | bool radio_on; | ||
424 | struct { | ||
425 | /* Values saved when turning the radio off. | ||
426 | * They are needed when turning it on again. */ | ||
427 | bool valid; | ||
428 | u16 rfover; | ||
429 | u16 rfoverval; | ||
430 | } radio_off_context; | ||
431 | |||
423 | u16 minlowsig[2]; | 432 | u16 minlowsig[2]; |
424 | u16 minlowsigpos[2]; | 433 | u16 minlowsigpos[2]; |
425 | 434 | ||