Skip to content

Commit

Permalink
[PATCH] libertas: rename wlan_association_worker
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Holger Schurig authored and John W. Linville committed Jun 11, 2007
1 parent 064827e commit eb3ce63
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion drivers/net/wireless/libertas/assoc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/wireless/libertas/assoc.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion drivers/net/wireless/libertas/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit eb3ce63

Please sign in to comment.