Commit eb3ce631 authored by Holger Schurig's avatar Holger Schurig Committed by John W. Linville

[PATCH] libertas: rename wlan_association_worker

Renames wlan_association_worker into libertas_association_worker
Signed-off-by: default avatarHolger Schurig <hs4233@mail.mn-solutions.de>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 064827ed
...@@ -345,7 +345,7 @@ static int should_stop_adhoc(wlan_adapter *adapter, ...@@ -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_private *priv = container_of(work, wlan_private, assoc_work.work);
wlan_adapter *adapter = priv->adapter; wlan_adapter *adapter = priv->adapter;
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
#include "dev.h" #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); struct assoc_request * wlan_get_association_request(wlan_adapter *adapter);
......
...@@ -964,7 +964,7 @@ wlan_private *wlan_add_card(void *card) ...@@ -964,7 +964,7 @@ wlan_private *wlan_add_card(void *card)
priv->assoc_thread = priv->assoc_thread =
create_singlethread_workqueue("libertas_assoc"); 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 * Register the device. Fillup the private data structure with
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment