ath9k_hw: make use of the gain_table_entry macro
authorMohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
Thu, 23 Jun 2011 14:44:29 +0000 (20:14 +0530)
committerJohn W. Linville <linville@tuxdriver.com>
Mon, 27 Jun 2011 19:09:40 +0000 (15:09 -0400)
Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/ath/ath9k/ar9003_paprd.c

index 6e9e892..de19723 100644 (file)
@@ -236,7 +236,7 @@ static void ar9003_paprd_get_gain_table(struct ath_hw *ah)
        memset(entry, 0, sizeof(ah->paprd_gain_table_entries));
        memset(index, 0, sizeof(ah->paprd_gain_table_index));
 
-       for (i = 0; i < 32; i++) {
+       for (i = 0; i < PAPRD_GAIN_TABLE_ENTRIES; i++) {
                entry[i] = REG_READ(ah, reg);
                index[i] = (entry[i] >> 24) & 0xff;
                reg += 4;
@@ -741,7 +741,7 @@ int ar9003_paprd_setup_gain_table(struct ath_hw *ah, int chain)
        desired_gain = ar9003_get_desired_gain(ah, chain, train_power);
 
        gain_index = 0;
-       for (i = 0; i < 32; i++) {
+       for (i = 0; i < PAPRD_GAIN_TABLE_ENTRIES; i++) {
                if (ah->paprd_gain_table_index[i] >= desired_gain)
                        break;
                gain_index++;