staging: rtl8192e: Rename rtl8192_adapter_start
Use naming schema found in other rtlwifi devices. Rename rtl8192_adapter_start to rtl92e_start_adapter. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
12656e2b8c
commit
460266292d
|
@ -702,7 +702,7 @@ static void rtl8192_hwconfig(struct net_device *dev)
|
|||
priv->LongRetryLimit << RETRY_LIMIT_LONG_SHIFT);
|
||||
}
|
||||
|
||||
bool rtl8192_adapter_start(struct net_device *dev)
|
||||
bool rtl92e_start_adapter(struct net_device *dev)
|
||||
{
|
||||
struct r8192_priv *priv = rtllib_priv(dev);
|
||||
u32 ulRegRead;
|
||||
|
|
|
@ -42,7 +42,7 @@ void rtl8192_InitializeVariables(struct net_device *dev);
|
|||
void rtl8192e_start_beacon(struct net_device *dev);
|
||||
void rtl8192e_SetHwReg(struct net_device *dev, u8 variable, u8 *val);
|
||||
void rtl8192_get_eeprom_size(struct net_device *dev);
|
||||
bool rtl8192_adapter_start(struct net_device *dev);
|
||||
bool rtl92e_start_adapter(struct net_device *dev);
|
||||
void rtl8192_link_change(struct net_device *dev);
|
||||
void rtl8192_AllowAllDestAddr(struct net_device *dev, bool bAllowAllDA,
|
||||
bool WriteIntoReg);
|
||||
|
|
|
@ -46,7 +46,7 @@ static struct rtl819x_ops rtl819xp_ops = {
|
|||
.nic_type = NIC_8192E,
|
||||
.get_eeprom_size = rtl8192_get_eeprom_size,
|
||||
.init_adapter_variable = rtl8192_InitializeVariables,
|
||||
.initialize_adapter = rtl8192_adapter_start,
|
||||
.initialize_adapter = rtl92e_start_adapter,
|
||||
.link_change = rtl8192_link_change,
|
||||
.tx_fill_descriptor = rtl8192_tx_fill_desc,
|
||||
.tx_fill_cmd_descriptor = rtl8192_tx_fill_cmd_desc,
|
||||
|
|
Loading…
Reference in New Issue