staging: rtl8192e: Rename rtl8192_InitializeVariables
Use naming schema found in other rtlwifi devices. Rename rtl8192_InitializeVariables to rtl92e_init_variables. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c9cf5e78f3
commit
df85a1313f
drivers/staging/rtl8192e/rtl8192e
|
@ -2193,7 +2193,7 @@ void rtl8192_update_ratr_table(struct net_device *dev)
|
|||
}
|
||||
|
||||
void
|
||||
rtl8192_InitializeVariables(struct net_device *dev)
|
||||
rtl92e_init_variables(struct net_device *dev)
|
||||
{
|
||||
struct r8192_priv *priv = rtllib_priv(dev);
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ void rtl92e_enable_tx(struct net_device *dev);
|
|||
void rtl92e_enable_irq(struct net_device *dev);
|
||||
void rtl92e_disable_irq(struct net_device *dev);
|
||||
void rtl92e_clear_irq(struct net_device *dev);
|
||||
void rtl8192_InitializeVariables(struct net_device *dev);
|
||||
void rtl92e_init_variables(struct net_device *dev);
|
||||
void rtl92e_start_beacon(struct net_device *dev);
|
||||
void rtl92e_set_reg(struct net_device *dev, u8 variable, u8 *val);
|
||||
void rtl92e_get_eeprom_size(struct net_device *dev);
|
||||
|
|
|
@ -45,7 +45,7 @@ static char *ifname = "wlan%d";
|
|||
static struct rtl819x_ops rtl819xp_ops = {
|
||||
.nic_type = NIC_8192E,
|
||||
.get_eeprom_size = rtl92e_get_eeprom_size,
|
||||
.init_adapter_variable = rtl8192_InitializeVariables,
|
||||
.init_adapter_variable = rtl92e_init_variables,
|
||||
.initialize_adapter = rtl92e_start_adapter,
|
||||
.link_change = rtl8192_link_change,
|
||||
.tx_fill_descriptor = rtl8192_tx_fill_desc,
|
||||
|
|
Loading…
Reference in New Issue