diff options
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/sta_info.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/mac80211/sta_info.c b/net/mac80211/sta_info.c index cfd8ee9adad0..ffe8a49d8927 100644 --- a/net/mac80211/sta_info.c +++ b/net/mac80211/sta_info.c | |||
@@ -346,11 +346,10 @@ void sta_info_init(struct ieee80211_local *local) | |||
346 | rwlock_init(&local->sta_lock); | 346 | rwlock_init(&local->sta_lock); |
347 | INIT_LIST_HEAD(&local->sta_list); | 347 | INIT_LIST_HEAD(&local->sta_list); |
348 | 348 | ||
349 | init_timer(&local->sta_cleanup); | 349 | setup_timer(&local->sta_cleanup, sta_info_cleanup, |
350 | (unsigned long)local); | ||
350 | local->sta_cleanup.expires = | 351 | local->sta_cleanup.expires = |
351 | round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL); | 352 | round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL); |
352 | local->sta_cleanup.data = (unsigned long) local; | ||
353 | local->sta_cleanup.function = sta_info_cleanup; | ||
354 | 353 | ||
355 | #ifdef CONFIG_MAC80211_DEBUGFS | 354 | #ifdef CONFIG_MAC80211_DEBUGFS |
356 | INIT_WORK(&local->sta_debugfs_add, sta_info_debugfs_add_task); | 355 | INIT_WORK(&local->sta_debugfs_add, sta_info_debugfs_add_task); |