staging: rtl8192e: Rename rtl8192_halt_adapter

Use naming schema found in other rtlwifi devices.
Rename rtl8192_halt_adapter to rtl92e_stop_adapter.

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:32 +02:00 committed by Greg Kroah-Hartman
parent 4d73bd2636
commit fe99c77b44
3 changed files with 3 additions and 3 deletions
drivers/staging/rtl8192e/rtl8192e

View File

@ -2098,7 +2098,7 @@ bool rtl8192_rx_query_status_desc(struct net_device *dev,
return true;
}
void rtl8192_halt_adapter(struct net_device *dev, bool reset)
void rtl92e_stop_adapter(struct net_device *dev, bool reset)
{
struct r8192_priv *priv = rtllib_priv(dev);
int i;

View File

@ -56,6 +56,6 @@ bool rtl8192_rx_query_status_desc(struct net_device *dev,
struct rtllib_rx_stats *stats,
struct rx_desc *pdesc,
struct sk_buff *skb);
void rtl8192_halt_adapter(struct net_device *dev, bool reset);
void rtl92e_stop_adapter(struct net_device *dev, bool reset);
void rtl8192_update_ratr_table(struct net_device *dev);
#endif

View File

@ -52,7 +52,7 @@ static struct rtl819x_ops rtl819xp_ops = {
.tx_fill_cmd_descriptor = rtl8192_tx_fill_cmd_desc,
.rx_query_status_descriptor = rtl8192_rx_query_status_desc,
.rx_command_packet_handler = NULL,
.stop_adapter = rtl8192_halt_adapter,
.stop_adapter = rtl92e_stop_adapter,
.update_ratr_table = rtl8192_update_ratr_table,
.irq_enable = rtl92e_enable_irq,
.irq_disable = rtl92e_disable_irq,