Commit 46026629 authored by Mateusz Kulikowski's avatar Mateusz Kulikowski Committed by Greg Kroah-Hartman

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: default avatarMateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 12656e2b
...@@ -702,7 +702,7 @@ static void rtl8192_hwconfig(struct net_device *dev) ...@@ -702,7 +702,7 @@ static void rtl8192_hwconfig(struct net_device *dev)
priv->LongRetryLimit << RETRY_LIMIT_LONG_SHIFT); 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); struct r8192_priv *priv = rtllib_priv(dev);
u32 ulRegRead; u32 ulRegRead;
......
...@@ -42,7 +42,7 @@ void rtl8192_InitializeVariables(struct net_device *dev); ...@@ -42,7 +42,7 @@ void rtl8192_InitializeVariables(struct net_device *dev);
void rtl8192e_start_beacon(struct net_device *dev); void rtl8192e_start_beacon(struct net_device *dev);
void rtl8192e_SetHwReg(struct net_device *dev, u8 variable, u8 *val); void rtl8192e_SetHwReg(struct net_device *dev, u8 variable, u8 *val);
void rtl8192_get_eeprom_size(struct net_device *dev); 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_link_change(struct net_device *dev);
void rtl8192_AllowAllDestAddr(struct net_device *dev, bool bAllowAllDA, void rtl8192_AllowAllDestAddr(struct net_device *dev, bool bAllowAllDA,
bool WriteIntoReg); bool WriteIntoReg);
......
...@@ -46,7 +46,7 @@ static struct rtl819x_ops rtl819xp_ops = { ...@@ -46,7 +46,7 @@ static struct rtl819x_ops rtl819xp_ops = {
.nic_type = NIC_8192E, .nic_type = NIC_8192E,
.get_eeprom_size = rtl8192_get_eeprom_size, .get_eeprom_size = rtl8192_get_eeprom_size,
.init_adapter_variable = rtl8192_InitializeVariables, .init_adapter_variable = rtl8192_InitializeVariables,
.initialize_adapter = rtl8192_adapter_start, .initialize_adapter = rtl92e_start_adapter,
.link_change = rtl8192_link_change, .link_change = rtl8192_link_change,
.tx_fill_descriptor = rtl8192_tx_fill_desc, .tx_fill_descriptor = rtl8192_tx_fill_desc,
.tx_fill_cmd_descriptor = rtl8192_tx_fill_cmd_desc, .tx_fill_cmd_descriptor = rtl8192_tx_fill_cmd_desc,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment