staging: rtl8192e: Rename rtl8192_enable_tx
Use naming schema found in other rtlwifi devices. Rename rtl8192_enable_tx to rtl92e_enable_tx. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
78c352b2b2
commit
6af7a8b662
3 changed files with 3 additions and 3 deletions
|
@ -2266,7 +2266,7 @@ static const u32 TX_DESC_BASE[] = {
|
|||
BKQDA, BEQDA, VIQDA, VOQDA, HCCAQDA, CQDA, MQDA, HQDA, BQDA
|
||||
};
|
||||
|
||||
void rtl8192_enable_tx(struct net_device *dev)
|
||||
void rtl92e_enable_tx(struct net_device *dev)
|
||||
{
|
||||
struct r8192_priv *priv = (struct r8192_priv *)rtllib_priv(dev);
|
||||
u32 i;
|
||||
|
|
|
@ -34,7 +34,7 @@ bool rtl8192_HalRxCheckStuck(struct net_device *dev);
|
|||
void rtl8192_interrupt_recognized(struct net_device *dev, u32 *p_inta,
|
||||
u32 *p_intb);
|
||||
void rtl92e_enable_rx(struct net_device *dev);
|
||||
void rtl8192_enable_tx(struct net_device *dev);
|
||||
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);
|
||||
|
|
|
@ -58,7 +58,7 @@ static struct rtl819x_ops rtl819xp_ops = {
|
|||
.irq_disable = rtl92e_disable_irq,
|
||||
.irq_clear = rtl92e_clear_irq,
|
||||
.rx_enable = rtl92e_enable_rx,
|
||||
.tx_enable = rtl8192_enable_tx,
|
||||
.tx_enable = rtl92e_enable_tx,
|
||||
.interrupt_recognized = rtl8192_interrupt_recognized,
|
||||
.TxCheckStuckHandler = rtl8192_HalTxCheckStuck,
|
||||
.RxCheckStuckHandler = rtl8192_HalRxCheckStuck,
|
||||
|
|
Loading…
Add table
Reference in a new issue