aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath9k/calib.h
diff options
context:
space:
mode:
authorSujith <Sujith.Manoharan@atheros.com>2009-02-09 02:57:26 -0500
committerJohn W. Linville <linville@tuxdriver.com>2009-02-13 13:45:10 -0500
commit2660b81a378ab227b78c4cc618453fa7e19a7c7b (patch)
treeea305af43f0e27c86538fecce6c9a4e0151dbc78 /drivers/net/wireless/ath9k/calib.h
parentf74df6fbe31561091bf42be0ed30232be2b9d3ac (diff)
ath9k: Remove all the useless ah_ variable prefixes
Signed-off-by: Sujith <Sujith.Manoharan@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath9k/calib.h')
-rw-r--r--drivers/net/wireless/ath9k/calib.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/net/wireless/ath9k/calib.h b/drivers/net/wireless/ath9k/calib.h
index e2c614098545..d2448f049c1d 100644
--- a/drivers/net/wireless/ath9k/calib.h
+++ b/drivers/net/wireless/ath9k/calib.h
@@ -56,14 +56,14 @@ struct ar5416IniArray {
56 56
57#define INSERT_CAL(_ahp, _perCal) \ 57#define INSERT_CAL(_ahp, _perCal) \
58 do { \ 58 do { \
59 if ((_ahp)->ah_cal_list_last == NULL) { \ 59 if ((_ahp)->cal_list_last == NULL) { \
60 (_ahp)->ah_cal_list = \ 60 (_ahp)->cal_list = \
61 (_ahp)->ah_cal_list_last = (_perCal); \ 61 (_ahp)->cal_list_last = (_perCal); \
62 ((_ahp)->ah_cal_list_last)->calNext = (_perCal); \ 62 ((_ahp)->cal_list_last)->calNext = (_perCal); \
63 } else { \ 63 } else { \
64 ((_ahp)->ah_cal_list_last)->calNext = (_perCal); \ 64 ((_ahp)->cal_list_last)->calNext = (_perCal); \
65 (_ahp)->ah_cal_list_last = (_perCal); \ 65 (_ahp)->cal_list_last = (_perCal); \
66 (_perCal)->calNext = (_ahp)->ah_cal_list; \ 66 (_perCal)->calNext = (_ahp)->cal_list; \
67 } \ 67 } \
68 } while (0) 68 } while (0)
69 69