]> Git Repo - linux.git/commitdiff
ath9k_hw: Fix number of GPIO pins for AR9287/9300
authorMohammed Shafi Shajakhan <[email protected]>
Fri, 30 Sep 2011 06:01:27 +0000 (11:31 +0530)
committerJohn W. Linville <[email protected]>
Mon, 3 Oct 2011 19:22:42 +0000 (15:22 -0400)
this patch fixes the assumption of maximum number of GPIO pins present
in AR9287/AR9300. this fix is essential as we might encounter some
functionality issues involved in accessing the status of GPIO pins which
are all incorrectly assumed to be not within the range of max_num_gpio
of AR9300/AR9287 chipsets

Cc: [email protected]
Signed-off-by: Mohammed Shafi Shajakhan <[email protected]>
Signed-off-by: John W. Linville <[email protected]>
drivers/net/wireless/ath/ath9k/hw.c

index f2de7ee047ce5566853e23396c441b59d3f75ffc..e2c62ea50dad1fd9cfe713b52c51d91f98626543 100644 (file)
@@ -2153,6 +2153,10 @@ int ath9k_hw_fill_cap_info(struct ath_hw *ah)
                pCap->num_gpio_pins = AR9271_NUM_GPIO;
        else if (AR_DEVID_7010(ah))
                pCap->num_gpio_pins = AR7010_NUM_GPIO;
+       else if (AR_SREV_9300_20_OR_LATER(ah))
+               pCap->num_gpio_pins = AR9300_NUM_GPIO;
+       else if (AR_SREV_9287_11_OR_LATER(ah))
+               pCap->num_gpio_pins = AR9287_NUM_GPIO;
        else if (AR_SREV_9285_12_OR_LATER(ah))
                pCap->num_gpio_pins = AR9285_NUM_GPIO;
        else if (AR_SREV_9280_20_OR_LATER(ah))
This page took 0.069996 seconds and 4 git commands to generate.