]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
staging: rtl8192e: Remove enum RF_1T2R and RF_Type
authorPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Sun, 2 Apr 2023 09:51:47 +0000 (11:51 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 5 Apr 2023 14:38:23 +0000 (16:38 +0200)
enum RF_1T2R is used to initialize a local variable RF_Type that is then
shifted. The result of the shift is zero. Remove code that has always
the same result to increase readability.

Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/6c29e709f5c328703870ca8e7d61ee6338886fa7.1680427945.git.philipp.g.hortmann@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl8192e/rtl_dm.c
drivers/staging/rtl8192e/rtllib.h

index 258ea66ab2fd42ed1c205a2736a7e90162e3e970..a21b3798db481883472765db3e4ba7604f4b9a93 100644 (file)
@@ -518,7 +518,7 @@ static void _rtl92e_dm_tx_power_tracking_callback_tssi(struct net_device *dev)
        struct dcmd_txcmd tx_cmd;
        u8      powerlevelOFDM24G;
        int     i = 0, j = 0, k = 0;
-       u8      RF_Type, tmp_report[5] = {0, 0, 0, 0, 0};
+       u8      tmp_report[5] = {0, 0, 0, 0, 0};
        u32     Value;
        u8      Pwr_Flag;
        u16     Avg_TSSI_Meas, tssi_13dBm, Avg_TSSI_Meas_from_driver = 0;
@@ -529,8 +529,7 @@ static void _rtl92e_dm_tx_power_tracking_callback_tssi(struct net_device *dev)
        priv->rtllib->bdynamic_txpower_enable = false;
 
        powerlevelOFDM24G = priv->pwr_track >> 24;
-       RF_Type = RF_1T2R;
-       Value = (RF_Type<<8) | powerlevelOFDM24G;
+       Value = powerlevelOFDM24G;
 
        for (j = 0; j <= 30; j++) {
 
index 197c0a44ebd68fba5dc2566409878973d32d67a9..7d83a4c322cfdc98a7c86c1425a92e0b05d1169d 100644 (file)
@@ -433,10 +433,6 @@ enum led_ctl_mode {
        LED_CTL_START_TO_LINK = 8,
 };
 
-enum rt_rf_type_def {
-       RF_1T2R = 0,
-};
-
 enum wireless_mode {
        WIRELESS_MODE_UNKNOWN = 0x00,
        WIRELESS_MODE_A = 0x01,