forked from Minki/linux
[PATCH] libertas: rename wlan_association_worker
Renames wlan_association_worker into libertas_association_worker Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
064827edf6
commit
eb3ce631f9
@ -345,7 +345,7 @@ static int should_stop_adhoc(wlan_adapter *adapter,
|
||||
}
|
||||
|
||||
|
||||
void wlan_association_worker(struct work_struct *work)
|
||||
void libertas_association_worker(struct work_struct *work)
|
||||
{
|
||||
wlan_private *priv = container_of(work, wlan_private, assoc_work.work);
|
||||
wlan_adapter *adapter = priv->adapter;
|
||||
|
@ -5,7 +5,7 @@
|
||||
|
||||
#include "dev.h"
|
||||
|
||||
void wlan_association_worker(struct work_struct *work);
|
||||
void libertas_association_worker(struct work_struct *work);
|
||||
|
||||
struct assoc_request * wlan_get_association_request(wlan_adapter *adapter);
|
||||
|
||||
|
@ -964,7 +964,7 @@ wlan_private *wlan_add_card(void *card)
|
||||
|
||||
priv->assoc_thread =
|
||||
create_singlethread_workqueue("libertas_assoc");
|
||||
INIT_DELAYED_WORK(&priv->assoc_work, wlan_association_worker);
|
||||
INIT_DELAYED_WORK(&priv->assoc_work, libertas_association_worker);
|
||||
|
||||
/*
|
||||
* Register the device. Fillup the private data structure with
|
||||
|
Loading…
Reference in New Issue
Block a user