lkml.org 
[lkml]   [2020]   [Feb]   [14]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH AUTOSEL 4.9 121/141] rtlwifi: rtl8723ae: remove unused variables
    Date
    From: YueHaibing <yuehaibing@huawei.com>

    [ Upstream commit c5f9852411098474ab21f5d7b1b84e5cdd59ca5a ]

    drivers/net/wireless/realtek/rtlwifi/rtl8723ae/dm.c:16:18:
    warning: ofdmswing_table defined but not used [-Wunused-const-variable=]
    drivers/net/wireless/realtek/rtlwifi/rtl8723ae/dm.c:56:17:
    warning: cckswing_table_ch1ch13 defined but not used [-Wunused-const-variable=]
    drivers/net/wireless/realtek/rtlwifi/rtl8723ae/dm.c:92:17:
    warning: cckswing_table_ch14 defined but not used [-Wunused-const-variable=]

    These variable is never used, so remove them.

    Reported-by: Hulk Robot <hulkci@huawei.com>
    Signed-off-by: YueHaibing <yuehaibing@huawei.com>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Signed-off-by: Sasha Levin <sashal@kernel.org>
    ---
    .../wireless/realtek/rtlwifi/rtl8723ae/dm.c | 112 ------------------
    1 file changed, 112 deletions(-)

    diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/dm.c b/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/dm.c
    index 42a6fba90ba91..ec41cfa8876e6 100644
    --- a/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/dm.c
    +++ b/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/dm.c
    @@ -35,118 +35,6 @@
    #include "fw.h"
    #include "hal_btc.h"

    -static const u32 ofdmswing_table[OFDM_TABLE_SIZE] = {
    - 0x7f8001fe,
    - 0x788001e2,
    - 0x71c001c7,
    - 0x6b8001ae,
    - 0x65400195,
    - 0x5fc0017f,
    - 0x5a400169,
    - 0x55400155,
    - 0x50800142,
    - 0x4c000130,
    - 0x47c0011f,
    - 0x43c0010f,
    - 0x40000100,
    - 0x3c8000f2,
    - 0x390000e4,
    - 0x35c000d7,
    - 0x32c000cb,
    - 0x300000c0,
    - 0x2d4000b5,
    - 0x2ac000ab,
    - 0x288000a2,
    - 0x26000098,
    - 0x24000090,
    - 0x22000088,
    - 0x20000080,
    - 0x1e400079,
    - 0x1c800072,
    - 0x1b00006c,
    - 0x19800066,
    - 0x18000060,
    - 0x16c0005b,
    - 0x15800056,
    - 0x14400051,
    - 0x1300004c,
    - 0x12000048,
    - 0x11000044,
    - 0x10000040,
    -};
    -
    -static const u8 cckswing_table_ch1ch13[CCK_TABLE_SIZE][8] = {
    - {0x36, 0x35, 0x2e, 0x25, 0x1c, 0x12, 0x09, 0x04},
    - {0x33, 0x32, 0x2b, 0x23, 0x1a, 0x11, 0x08, 0x04},
    - {0x30, 0x2f, 0x29, 0x21, 0x19, 0x10, 0x08, 0x03},
    - {0x2d, 0x2d, 0x27, 0x1f, 0x18, 0x0f, 0x08, 0x03},
    - {0x2b, 0x2a, 0x25, 0x1e, 0x16, 0x0e, 0x07, 0x03},
    - {0x28, 0x28, 0x22, 0x1c, 0x15, 0x0d, 0x07, 0x03},
    - {0x26, 0x25, 0x21, 0x1b, 0x14, 0x0d, 0x06, 0x03},
    - {0x24, 0x23, 0x1f, 0x19, 0x13, 0x0c, 0x06, 0x03},
    - {0x22, 0x21, 0x1d, 0x18, 0x11, 0x0b, 0x06, 0x02},
    - {0x20, 0x20, 0x1b, 0x16, 0x11, 0x08, 0x05, 0x02},
    - {0x1f, 0x1e, 0x1a, 0x15, 0x10, 0x0a, 0x05, 0x02},
    - {0x1d, 0x1c, 0x18, 0x14, 0x0f, 0x0a, 0x05, 0x02},
    - {0x1b, 0x1a, 0x17, 0x13, 0x0e, 0x09, 0x04, 0x02},
    - {0x1a, 0x19, 0x16, 0x12, 0x0d, 0x09, 0x04, 0x02},
    - {0x18, 0x17, 0x15, 0x11, 0x0c, 0x08, 0x04, 0x02},
    - {0x17, 0x16, 0x13, 0x10, 0x0c, 0x08, 0x04, 0x02},
    - {0x16, 0x15, 0x12, 0x0f, 0x0b, 0x07, 0x04, 0x01},
    - {0x14, 0x14, 0x11, 0x0e, 0x0b, 0x07, 0x03, 0x02},
    - {0x13, 0x13, 0x10, 0x0d, 0x0a, 0x06, 0x03, 0x01},
    - {0x12, 0x12, 0x0f, 0x0c, 0x09, 0x06, 0x03, 0x01},
    - {0x11, 0x11, 0x0f, 0x0c, 0x09, 0x06, 0x03, 0x01},
    - {0x10, 0x10, 0x0e, 0x0b, 0x08, 0x05, 0x03, 0x01},
    - {0x0f, 0x0f, 0x0d, 0x0b, 0x08, 0x05, 0x03, 0x01},
    - {0x0e, 0x0e, 0x0c, 0x0a, 0x08, 0x05, 0x02, 0x01},
    - {0x0d, 0x0d, 0x0c, 0x0a, 0x07, 0x05, 0x02, 0x01},
    - {0x0d, 0x0c, 0x0b, 0x09, 0x07, 0x04, 0x02, 0x01},
    - {0x0c, 0x0c, 0x0a, 0x09, 0x06, 0x04, 0x02, 0x01},
    - {0x0b, 0x0b, 0x0a, 0x08, 0x06, 0x04, 0x02, 0x01},
    - {0x0b, 0x0a, 0x09, 0x08, 0x06, 0x04, 0x02, 0x01},
    - {0x0a, 0x0a, 0x09, 0x07, 0x05, 0x03, 0x02, 0x01},
    - {0x0a, 0x09, 0x08, 0x07, 0x05, 0x03, 0x02, 0x01},
    - {0x09, 0x09, 0x08, 0x06, 0x05, 0x03, 0x01, 0x01},
    - {0x09, 0x08, 0x07, 0x06, 0x04, 0x03, 0x01, 0x01}
    -};
    -
    -static const u8 cckswing_table_ch14[CCK_TABLE_SIZE][8] = {
    - {0x36, 0x35, 0x2e, 0x1b, 0x00, 0x00, 0x00, 0x00},
    - {0x33, 0x32, 0x2b, 0x19, 0x00, 0x00, 0x00, 0x00},
    - {0x30, 0x2f, 0x29, 0x18, 0x00, 0x00, 0x00, 0x00},
    - {0x2d, 0x2d, 0x17, 0x17, 0x00, 0x00, 0x00, 0x00},
    - {0x2b, 0x2a, 0x25, 0x15, 0x00, 0x00, 0x00, 0x00},
    - {0x28, 0x28, 0x24, 0x14, 0x00, 0x00, 0x00, 0x00},
    - {0x26, 0x25, 0x21, 0x13, 0x00, 0x00, 0x00, 0x00},
    - {0x24, 0x23, 0x1f, 0x12, 0x00, 0x00, 0x00, 0x00},
    - {0x22, 0x21, 0x1d, 0x11, 0x00, 0x00, 0x00, 0x00},
    - {0x20, 0x20, 0x1b, 0x10, 0x00, 0x00, 0x00, 0x00},
    - {0x1f, 0x1e, 0x1a, 0x0f, 0x00, 0x00, 0x00, 0x00},
    - {0x1d, 0x1c, 0x18, 0x0e, 0x00, 0x00, 0x00, 0x00},
    - {0x1b, 0x1a, 0x17, 0x0e, 0x00, 0x00, 0x00, 0x00},
    - {0x1a, 0x19, 0x16, 0x0d, 0x00, 0x00, 0x00, 0x00},
    - {0x18, 0x17, 0x15, 0x0c, 0x00, 0x00, 0x00, 0x00},
    - {0x17, 0x16, 0x13, 0x0b, 0x00, 0x00, 0x00, 0x00},
    - {0x16, 0x15, 0x12, 0x0b, 0x00, 0x00, 0x00, 0x00},
    - {0x14, 0x14, 0x11, 0x0a, 0x00, 0x00, 0x00, 0x00},
    - {0x13, 0x13, 0x10, 0x0a, 0x00, 0x00, 0x00, 0x00},
    - {0x12, 0x12, 0x0f, 0x09, 0x00, 0x00, 0x00, 0x00},
    - {0x11, 0x11, 0x0f, 0x09, 0x00, 0x00, 0x00, 0x00},
    - {0x10, 0x10, 0x0e, 0x08, 0x00, 0x00, 0x00, 0x00},
    - {0x0f, 0x0f, 0x0d, 0x08, 0x00, 0x00, 0x00, 0x00},
    - {0x0e, 0x0e, 0x0c, 0x07, 0x00, 0x00, 0x00, 0x00},
    - {0x0d, 0x0d, 0x0c, 0x07, 0x00, 0x00, 0x00, 0x00},
    - {0x0d, 0x0c, 0x0b, 0x06, 0x00, 0x00, 0x00, 0x00},
    - {0x0c, 0x0c, 0x0a, 0x06, 0x00, 0x00, 0x00, 0x00},
    - {0x0b, 0x0b, 0x0a, 0x06, 0x00, 0x00, 0x00, 0x00},
    - {0x0b, 0x0a, 0x09, 0x05, 0x00, 0x00, 0x00, 0x00},
    - {0x0a, 0x0a, 0x09, 0x05, 0x00, 0x00, 0x00, 0x00},
    - {0x0a, 0x09, 0x08, 0x05, 0x00, 0x00, 0x00, 0x00},
    - {0x09, 0x09, 0x08, 0x05, 0x00, 0x00, 0x00, 0x00},
    - {0x09, 0x08, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00}
    -};
    -
    static u8 rtl8723e_dm_initial_gain_min_pwdb(struct ieee80211_hw *hw)
    {
    struct rtl_priv *rtlpriv = rtl_priv(hw);
    --
    2.20.1
    \
     
     \ /
      Last update: 2020-02-14 17:38    [W:3.381 / U:0.540 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site