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

staging: rtl8192e: Rename rtl8192_DisableInterrupt

Use naming schema found in other rtlwifi devices.
Rename rtl8192_DisableInterrupt to rtl92e_disable_irq.
Signed-off-by: default avatarMateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent dc578b41
...@@ -2237,7 +2237,7 @@ void rtl8192_EnableInterrupt(struct net_device *dev) ...@@ -2237,7 +2237,7 @@ void rtl8192_EnableInterrupt(struct net_device *dev)
} }
void rtl8192_DisableInterrupt(struct net_device *dev) void rtl92e_disable_irq(struct net_device *dev)
{ {
struct r8192_priv *priv = (struct r8192_priv *)rtllib_priv(dev); struct r8192_priv *priv = (struct r8192_priv *)rtllib_priv(dev);
......
...@@ -36,7 +36,7 @@ void rtl8192_interrupt_recognized(struct net_device *dev, u32 *p_inta, ...@@ -36,7 +36,7 @@ void rtl8192_interrupt_recognized(struct net_device *dev, u32 *p_inta,
void rtl8192_enable_rx(struct net_device *dev); void rtl8192_enable_rx(struct net_device *dev);
void rtl8192_enable_tx(struct net_device *dev); void rtl8192_enable_tx(struct net_device *dev);
void rtl8192_EnableInterrupt(struct net_device *dev); void rtl8192_EnableInterrupt(struct net_device *dev);
void rtl8192_DisableInterrupt(struct net_device *dev); void rtl92e_disable_irq(struct net_device *dev);
void rtl92e_clear_irq(struct net_device *dev); void rtl92e_clear_irq(struct net_device *dev);
void rtl8192_InitializeVariables(struct net_device *dev); void rtl8192_InitializeVariables(struct net_device *dev);
void rtl8192e_start_beacon(struct net_device *dev); void rtl8192e_start_beacon(struct net_device *dev);
......
...@@ -55,7 +55,7 @@ static struct rtl819x_ops rtl819xp_ops = { ...@@ -55,7 +55,7 @@ static struct rtl819x_ops rtl819xp_ops = {
.stop_adapter = rtl8192_halt_adapter, .stop_adapter = rtl8192_halt_adapter,
.update_ratr_table = rtl8192_update_ratr_table, .update_ratr_table = rtl8192_update_ratr_table,
.irq_enable = rtl8192_EnableInterrupt, .irq_enable = rtl8192_EnableInterrupt,
.irq_disable = rtl8192_DisableInterrupt, .irq_disable = rtl92e_disable_irq,
.irq_clear = rtl92e_clear_irq, .irq_clear = rtl92e_clear_irq,
.rx_enable = rtl8192_enable_rx, .rx_enable = rtl8192_enable_rx,
.tx_enable = rtl8192_enable_tx, .tx_enable = rtl8192_enable_tx,
......
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