staging: rtl8192e: Rename rtl8192_BBConfig
Use naming schema found in other rtlwifi devices. Rename rtl8192_BBConfig to rtl92e_config_bb. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3803cb215b
commit
2949353dde
drivers/staging/rtl8192e/rtl8192e
|
@ -750,7 +750,7 @@ bool rtl92e_start_adapter(struct net_device *dev)
|
|||
}
|
||||
}
|
||||
RT_TRACE(COMP_INIT, "BB Config Start!\n");
|
||||
rtStatus = rtl8192_BBConfig(dev);
|
||||
rtStatus = rtl92e_config_bb(dev);
|
||||
if (!rtStatus) {
|
||||
netdev_warn(dev, "%s(): Failed to configure BB\n", __func__);
|
||||
return rtStatus;
|
||||
|
|
|
@ -599,7 +599,7 @@ static bool rtl8192_BB_Config_ParaFile(struct net_device *dev)
|
|||
|
||||
return rtStatus;
|
||||
}
|
||||
bool rtl8192_BBConfig(struct net_device *dev)
|
||||
bool rtl92e_config_bb(struct net_device *dev)
|
||||
{
|
||||
rtl8192_InitBBRFRegDef(dev);
|
||||
return rtl8192_BB_Config_ParaFile(dev);
|
||||
|
|
|
@ -83,7 +83,7 @@ extern void rtl8192_phy_configmac(struct net_device *dev);
|
|||
extern bool rtl8192_phy_checkBBAndRF(struct net_device *dev,
|
||||
enum hw90_block CheckBlock,
|
||||
enum rf90_radio_path eRFPath);
|
||||
extern bool rtl8192_BBConfig(struct net_device *dev);
|
||||
extern bool rtl92e_config_bb(struct net_device *dev);
|
||||
extern void rtl8192_phy_getTxPower(struct net_device *dev);
|
||||
extern void rtl8192_phy_setTxPower(struct net_device *dev, u8 channel);
|
||||
extern bool rtl8192_phy_RFConfig(struct net_device *dev);
|
||||
|
|
Loading…
Reference in New Issue