diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-02-01 21:06:24 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-02-01 21:06:24 +0000 |
commit | 2ffd273e1b91291b92c004b58dff673ecb79384d (patch) | |
tree | 1b02277981c5053a2bfab25f5f6b96c10c7cda61 /package/d80211/src/sta_info.c | |
parent | 28fd51e455d9bf1d56deaa05e8de618989287908 (diff) | |
download | upstream-2ffd273e1b91291b92c004b58dff673ecb79384d.tar.gz upstream-2ffd273e1b91291b92c004b58dff673ecb79384d.tar.bz2 upstream-2ffd273e1b91291b92c004b58dff673ecb79384d.zip |
update d80211 to latest wireless-dev version
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6241 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/d80211/src/sta_info.c')
-rw-r--r-- | package/d80211/src/sta_info.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/package/d80211/src/sta_info.c b/package/d80211/src/sta_info.c index 0c42ae8074..e8f2bab3ff 100644 --- a/package/d80211/src/sta_info.c +++ b/package/d80211/src/sta_info.c @@ -342,9 +342,10 @@ static void sta_info_cleanup(unsigned long data) } -static void sta_info_proc_add_task(void *data) +static void sta_info_proc_add_task(struct work_struct *work) { - struct ieee80211_local *local = data; + struct ieee80211_local *local = + container_of(work, struct ieee80211_local, sta_proc_add); struct sta_info *sta, *tmp; while (1) { @@ -395,7 +396,7 @@ void sta_info_init(struct ieee80211_local *local) local->sta_cleanup.data = (unsigned long) local; local->sta_cleanup.function = sta_info_cleanup; - INIT_WORK(&local->sta_proc_add, sta_info_proc_add_task, local); + INIT_WORK(&local->sta_proc_add, sta_info_proc_add_task); } int sta_info_start(struct ieee80211_local *local) @@ -439,7 +440,7 @@ void sta_info_remove_aid_ptr(struct sta_info *sta) sdata->local->ops->set_tim(local_to_hw(sdata->local), sta->aid, 0); if (sdata->bss) - bss_tim_clear(sdata->local, sdata->bss, sta->aid); + __bss_tim_clear(sdata->bss, sta->aid); } |