staging: rtl8192e: Rename rtl8192_HalRxCheckStuck

Use naming schema found in other rtlwifi devices.
Rename rtl8192_HalRxCheckStuck to rtl92e_is_rx_stuck.

Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Mateusz Kulikowski 2015-07-19 19:27:31 +02:00 committed by Greg Kroah-Hartman
parent 56a5b5af61
commit 4d73bd2636
3 changed files with 3 additions and 3 deletions

View file

@ -2283,7 +2283,7 @@ void rtl8192_interrupt_recognized(struct net_device *dev, u32 *p_inta,
write_nic_dword(dev, ISR, *p_inta);
}
bool rtl8192_HalRxCheckStuck(struct net_device *dev)
bool rtl92e_is_rx_stuck(struct net_device *dev)
{
struct r8192_priv *priv = rtllib_priv(dev);
u16 RegRxCounter = read_nic_word(dev, 0x130);

View file

@ -30,7 +30,7 @@
bool rtl92e_is_halfn_supported_by_ap(struct net_device *dev);
bool rtl92e_get_nmode_support_by_sec(struct net_device *dev);
bool rtl8192_HalTxCheckStuck(struct net_device *dev);
bool rtl8192_HalRxCheckStuck(struct net_device *dev);
bool rtl92e_is_rx_stuck(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);

View file

@ -61,7 +61,7 @@ static struct rtl819x_ops rtl819xp_ops = {
.tx_enable = rtl92e_enable_tx,
.interrupt_recognized = rtl8192_interrupt_recognized,
.TxCheckStuckHandler = rtl8192_HalTxCheckStuck,
.RxCheckStuckHandler = rtl8192_HalRxCheckStuck,
.RxCheckStuckHandler = rtl92e_is_rx_stuck,
};
static struct pci_device_id rtl8192_pci_id_tbl[] = {