diff options
Diffstat (limited to 'drivers/net/wireless/ath/ath.h')
-rw-r--r-- | drivers/net/wireless/ath/ath.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/net/wireless/ath/ath.h b/drivers/net/wireless/ath/ath.h index dd236c3b52f6..cee0191704f5 100644 --- a/drivers/net/wireless/ath/ath.h +++ b/drivers/net/wireless/ath/ath.h | |||
@@ -35,7 +35,6 @@ static const u8 ath_bcast_mac[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; | |||
35 | 35 | ||
36 | struct ath_ani { | 36 | struct ath_ani { |
37 | bool caldone; | 37 | bool caldone; |
38 | int16_t noise_floor; | ||
39 | unsigned int longcal_timer; | 38 | unsigned int longcal_timer; |
40 | unsigned int shortcal_timer; | 39 | unsigned int shortcal_timer; |
41 | unsigned int resetcal_timer; | 40 | unsigned int resetcal_timer; |
@@ -103,14 +102,12 @@ enum ath_cipher { | |||
103 | * @read: Register read | 102 | * @read: Register read |
104 | * @write: Register write | 103 | * @write: Register write |
105 | * @enable_write_buffer: Enable multiple register writes | 104 | * @enable_write_buffer: Enable multiple register writes |
106 | * @disable_write_buffer: Disable multiple register writes | 105 | * @write_flush: flush buffered register writes and disable buffering |
107 | * @write_flush: Flush buffered register writes | ||
108 | */ | 106 | */ |
109 | struct ath_ops { | 107 | struct ath_ops { |
110 | unsigned int (*read)(void *, u32 reg_offset); | 108 | unsigned int (*read)(void *, u32 reg_offset); |
111 | void (*write)(void *, u32 val, u32 reg_offset); | 109 | void (*write)(void *, u32 val, u32 reg_offset); |
112 | void (*enable_write_buffer)(void *); | 110 | void (*enable_write_buffer)(void *); |
113 | void (*disable_write_buffer)(void *); | ||
114 | void (*write_flush) (void *); | 111 | void (*write_flush) (void *); |
115 | }; | 112 | }; |
116 | 113 | ||