ath9k: move ATH9K_RSSI_BAD to hw.h
authorLuis R. Rodriguez <lrodriguez@atheros.com>
Mon, 14 Sep 2009 06:55:05 +0000 (23:55 -0700)
committerJohn W. Linville <linville@tuxdriver.com>
Wed, 7 Oct 2009 20:39:30 +0000 (16:39 -0400)
mac.c is now core driver independent.

Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/ath/ath9k/Makefile
drivers/net/wireless/ath/ath9k/ath9k.h
drivers/net/wireless/ath/ath9k/hw.h
drivers/net/wireless/ath/ath9k/mac.c

index f85dc82..2f21c67 100644 (file)
@@ -1,6 +1,4 @@
-ATH9K_HW_FIX +=        eeprom.o \
-               mac.o \
-
+ATH9K_HW_FIX +=        eeprom.o
 ATH9K_HW +=    hw.o \
                eeprom_def.o \
                eeprom_4k.o \
@@ -8,7 +6,8 @@ ATH9K_HW +=     hw.o \
                calib.o \
                ani.o \
                phy.o \
-               btcoex.o
+               btcoex.o \
+               mac.o \
 
 ath9k-y +=     $(ATH9K_HW) \
                $(ATH9K_HW_FIX) \
index 9aff11d..8768e60 100644 (file)
@@ -288,7 +288,6 @@ struct ath_tx_control {
 
 #define ATH_RSSI_LPF_LEN               10
 #define RSSI_LPF_THRESHOLD             -20
-#define ATH9K_RSSI_BAD                 0x80
 #define ATH_RSSI_EP_MULTIPLIER     (1<<7)
 #define ATH_EP_MUL(x, mul)         ((x) * (mul))
 #define ATH_RSSI_IN(x)             (ATH_EP_MUL((x), ATH_RSSI_EP_MULTIPLIER))
index 874fb11..d854c17 100644 (file)
@@ -55,6 +55,8 @@
 
 #define        ATH_DEFAULT_NOISE_FLOOR -95
 
+#define ATH9K_RSSI_BAD                 0x80
+
 /* Register read/write primitives */
 #define REG_WRITE(_ah, _reg, _val) \
        ath9k_hw_common(_ah)->ops->write((_ah), (_val), (_reg))
index 1796ac7..3be658d 100644 (file)
@@ -14,7 +14,7 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include "ath9k.h"
+#include "hw.h"
 
 static void ath9k_hw_set_txq_interrupts(struct ath_hw *ah,
                                        struct ath9k_tx_queue_info *qi)