staging: rtl8188eu: remove unused parameter of HalSetBrateCfg()
authorMichael Straube <straube.linux@gmail.com>
Sun, 14 Oct 2018 10:17:35 +0000 (12:17 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 14 Oct 2018 11:33:15 +0000 (13:33 +0200)
The parameter 'struct adapter *adapt' of HalSetBrateCfg() is unused,
so remove it.

Signed-off-by: Michael Straube <straube.linux@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/hal/hal_com.c
drivers/staging/rtl8188eu/hal/usb_halinit.c
drivers/staging/rtl8188eu/include/hal_com.h

index 7202e17..039abbc 100644 (file)
@@ -119,7 +119,7 @@ u8 MRateToHwRate(u8 rate)
        return ret;
 }
 
-void HalSetBrateCfg(struct adapter *adapt, u8 *brates, u16 *rate_cfg)
+void HalSetBrateCfg(u8 *brates, u16 *rate_cfg)
 {
        u8 i, is_brate, brate;
 
index 75a28bf..71c3c56 100644 (file)
@@ -1267,7 +1267,7 @@ void rtw_hal_set_hwreg(struct adapter *Adapter, u8 variable, u8 *val)
                        /*  Select RRSR (in Legacy-OFDM and CCK) */
                        /*  For 8190, we select only 24M, 12M, 6M, 11M, 5.5M, 2M, and 1M from the Basic rate. */
                        /*  We do not use other rates. */
-                       HalSetBrateCfg(Adapter, val, &BrateCfg);
+                       HalSetBrateCfg(val, &BrateCfg);
                        DBG_88E("HW_VAR_BASIC_RATE: BrateCfg(%#x)\n", BrateCfg);
 
                        /* 2011.03.30 add by Luke Lee */
index 428a2a9..2e194f7 100644 (file)
@@ -148,7 +148,7 @@ u8 hal_com_get_channel_plan(struct adapter *padapter,
 
 u8 MRateToHwRate(u8 rate);
 
-void HalSetBrateCfg(struct adapter *Adapter, u8 *mBratesOS, u16 *pBrateCfg);
+void HalSetBrateCfg(u8 *mBratesOS, u16 *pBrateCfg);
 
 bool Hal_MappingOutPipe(struct adapter *pAdapter, u8 NumOutPipe);