in the rtlwifi/rtl8192cu, INTF_PCI and INTF_USB is unnecessary.
because RTL8192CU chipset is only USB interface.

Signed-off-by: Taehee Yoo <ap420...@gmail.com>
---
 drivers/net/wireless/rtlwifi/rtl8192cu/rf.c | 17 ++++-------------
 1 file changed, 4 insertions(+), 13 deletions(-)

diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/rf.c 
b/drivers/net/wireless/rtlwifi/rtl8192cu/rf.c
index b878d56..4440a37 100644
--- a/drivers/net/wireless/rtlwifi/rtl8192cu/rf.c
+++ b/drivers/net/wireless/rtlwifi/rtl8192cu/rf.c
@@ -74,14 +74,8 @@ void rtl92cu_phy_rf6052_set_cck_txpower(struct ieee80211_hw 
*hw,
        u8 idx1, idx2;
        u8 *ptr;
 
-       if (rtlhal->interface == INTF_PCI) {
-               if (rtlefuse->eeprom_regulatory != 0)
-                       turbo_scanoff = true;
-       } else {
-               if ((rtlefuse->eeprom_regulatory != 0) ||
-                   (rtlefuse->external_pa))
-                       turbo_scanoff = true;
-       }
+       if ((rtlefuse->eeprom_regulatory != 0) || (rtlefuse->external_pa))
+               turbo_scanoff = true;
        if (mac->act_scanning) {
                tx_agc[RF90_PATH_A] = 0x3f3f3f3f;
                tx_agc[RF90_PATH_B] = 0x3f3f3f3f;
@@ -90,11 +84,8 @@ void rtl92cu_phy_rf6052_set_cck_txpower(struct ieee80211_hw 
*hw,
                            (ppowerlevel[idx1] << 8) |
                            (ppowerlevel[idx1] << 16) |
                            (ppowerlevel[idx1] << 24);
-                       if (rtlhal->interface == INTF_USB) {
-                               if (tx_agc[idx1] > 0x20 &&
-                                   rtlefuse->external_pa)
-                                       tx_agc[idx1] = 0x20;
-                       }
+                       if (tx_agc[idx1] > 0x20 && rtlefuse->external_pa)
+                               tx_agc[idx1] = 0x20;
                }
        } else {
                if (rtlpriv->dm.dynamic_txhighpower_lvl ==
-- 
2.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to