staging: rtl8192e: Rename rtl8192_HalTxCheckStuck
Use naming schema found in other rtlwifi devices. Rename rtl8192_HalTxCheckStuck to rtl92e_is_tx_stuck. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
fe99c77b44
commit
c9cf5e78f3
|
@ -2347,7 +2347,7 @@ bool rtl92e_is_rx_stuck(struct net_device *dev)
|
||||||
return bStuck;
|
return bStuck;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool rtl8192_HalTxCheckStuck(struct net_device *dev)
|
bool rtl92e_is_tx_stuck(struct net_device *dev)
|
||||||
{
|
{
|
||||||
struct r8192_priv *priv = rtllib_priv(dev);
|
struct r8192_priv *priv = rtllib_priv(dev);
|
||||||
bool bStuck = false;
|
bool bStuck = false;
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
|
|
||||||
bool rtl92e_is_halfn_supported_by_ap(struct net_device *dev);
|
bool rtl92e_is_halfn_supported_by_ap(struct net_device *dev);
|
||||||
bool rtl92e_get_nmode_support_by_sec(struct net_device *dev);
|
bool rtl92e_get_nmode_support_by_sec(struct net_device *dev);
|
||||||
bool rtl8192_HalTxCheckStuck(struct net_device *dev);
|
bool rtl92e_is_tx_stuck(struct net_device *dev);
|
||||||
bool rtl92e_is_rx_stuck(struct net_device *dev);
|
bool rtl92e_is_rx_stuck(struct net_device *dev);
|
||||||
void rtl8192_interrupt_recognized(struct net_device *dev, u32 *p_inta,
|
void rtl8192_interrupt_recognized(struct net_device *dev, u32 *p_inta,
|
||||||
u32 *p_intb);
|
u32 *p_intb);
|
||||||
|
|
|
@ -60,7 +60,7 @@ static struct rtl819x_ops rtl819xp_ops = {
|
||||||
.rx_enable = rtl92e_enable_rx,
|
.rx_enable = rtl92e_enable_rx,
|
||||||
.tx_enable = rtl92e_enable_tx,
|
.tx_enable = rtl92e_enable_tx,
|
||||||
.interrupt_recognized = rtl8192_interrupt_recognized,
|
.interrupt_recognized = rtl8192_interrupt_recognized,
|
||||||
.TxCheckStuckHandler = rtl8192_HalTxCheckStuck,
|
.TxCheckStuckHandler = rtl92e_is_tx_stuck,
|
||||||
.RxCheckStuckHandler = rtl92e_is_rx_stuck,
|
.RxCheckStuckHandler = rtl92e_is_rx_stuck,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue