staging: rtl8192e: Rename rtl8192_hw_sleep_wq
Use naming schema found in other rtlwifi devices. Rename rtl8192_hw_sleep_wq to rtl92e_hw_sleep_wq. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9c4a55d1da
commit
bcdcc1ea06
|
@ -1037,7 +1037,7 @@ static void rtl8192_init_priv_task(struct net_device *dev)
|
|||
INIT_DELAYED_WORK_RSL(&priv->rtllib->hw_wakeup_wq,
|
||||
(void *) rtl8192_hw_wakeup_wq, dev);
|
||||
INIT_DELAYED_WORK_RSL(&priv->rtllib->hw_sleep_wq,
|
||||
(void *) rtl8192_hw_sleep_wq, dev);
|
||||
(void *) rtl92e_hw_sleep_wq, dev);
|
||||
tasklet_init(&priv->irq_rx_tasklet,
|
||||
(void(*)(unsigned long))rtl8192_irq_rx_tasklet,
|
||||
(unsigned long)priv);
|
||||
|
|
|
@ -590,7 +590,7 @@ void force_pci_posting(struct net_device *dev);
|
|||
void rtl92e_rx_enable(struct net_device *);
|
||||
void rtl92e_tx_enable(struct net_device *);
|
||||
|
||||
void rtl8192_hw_sleep_wq(void *data);
|
||||
void rtl92e_hw_sleep_wq(void *data);
|
||||
void rtl92e_commit(struct net_device *dev);
|
||||
|
||||
void rtl92e_check_rfctrl_gpio_timer(unsigned long data);
|
||||
|
|
|
@ -48,7 +48,7 @@ static void rtl8192_hw_sleep_down(struct net_device *dev)
|
|||
rtl92e_set_rf_state(dev, eRfSleep, RF_CHANGE_BY_PS, false);
|
||||
}
|
||||
|
||||
void rtl8192_hw_sleep_wq(void *data)
|
||||
void rtl92e_hw_sleep_wq(void *data)
|
||||
{
|
||||
struct rtllib_device *ieee = container_of_dwork_rsl(data,
|
||||
struct rtllib_device, hw_sleep_wq);
|
||||
|
|
Loading…
Reference in New Issue