summaryrefslogtreecommitdiff
path: root/drivers/staging/rtl8188eu/hal/phy.c
diff options
context:
space:
mode:
authorIvan Safonov <insafonov@gmail.com>2016-09-22 14:58:43 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-09-23 12:12:34 (GMT)
commit16eda427a320ba864e16236485efc33f8bc548cf (patch)
tree2c91dbe85e8dd5a1dd243ca8aa32c753bc8eb797 /drivers/staging/rtl8188eu/hal/phy.c
parentb95300e82f652209745bf65220c43f372666048e (diff)
downloadlinux-16eda427a320ba864e16236485efc33f8bc548cf.tar.xz
staging: r8188eu: remove rf_type member of hal_data_8188e structure
rf_type is always equal to RF_1T1R. Signed-off-by: Ivan Safonov <insafonov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8188eu/hal/phy.c')
-rw-r--r--drivers/staging/rtl8188eu/hal/phy.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/staging/rtl8188eu/hal/phy.c b/drivers/staging/rtl8188eu/hal/phy.c
index 4e3c2e6..aaf8c26 100644
--- a/drivers/staging/rtl8188eu/hal/phy.c
+++ b/drivers/staging/rtl8188eu/hal/phy.c
@@ -149,10 +149,7 @@ static void get_tx_power_index(struct adapter *adapt, u8 channel, u8 *cck_pwr,
u8 index = (channel - 1);
u8 TxCount = 0, path_nums;
- if ((RF_1T2R == hal_data->rf_type) || (RF_1T1R == hal_data->rf_type))
- path_nums = 1;
- else
- path_nums = 2;
+ path_nums = 1;
for (TxCount = 0; TxCount < path_nums; TxCount++) {
if (TxCount == RF_PATH_A) {