Commit e3dcf8bb authored by Kees Cook's avatar Kees Cook Committed by Kalle Valo

cw1200: Convert timers to use timer_setup()

In preparation for unconditionally passing the struct timer_list pointer to
all timer callbacks, switch to using the new timer_setup() and from_timer()
to pass the timer pointer explicitly.

Cc: Solomon Peachy <pizza@shaftnet.org>
Cc: Kalle Valo <kvalo@codeaurora.org>
Cc: linux-wireless@vger.kernel.org
Cc: netdev@vger.kernel.org
Signed-off-by: default avatarKees Cook <keescook@chromium.org>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 3e79202b
...@@ -373,8 +373,7 @@ static struct ieee80211_hw *cw1200_init_common(const u8 *macaddr, ...@@ -373,8 +373,7 @@ static struct ieee80211_hw *cw1200_init_common(const u8 *macaddr,
INIT_WORK(&priv->update_filtering_work, cw1200_update_filtering_work); INIT_WORK(&priv->update_filtering_work, cw1200_update_filtering_work);
INIT_WORK(&priv->set_beacon_wakeup_period_work, INIT_WORK(&priv->set_beacon_wakeup_period_work,
cw1200_set_beacon_wakeup_period_work); cw1200_set_beacon_wakeup_period_work);
setup_timer(&priv->mcast_timeout, cw1200_mcast_timeout, timer_setup(&priv->mcast_timeout, cw1200_mcast_timeout, 0);
(unsigned long)priv);
if (cw1200_queue_stats_init(&priv->tx_queue_stats, if (cw1200_queue_stats_init(&priv->tx_queue_stats,
CW1200_LINK_ID_MAX, CW1200_LINK_ID_MAX,
......
...@@ -130,11 +130,11 @@ static void __cw1200_queue_gc(struct cw1200_queue *queue, ...@@ -130,11 +130,11 @@ static void __cw1200_queue_gc(struct cw1200_queue *queue,
} }
} }
static void cw1200_queue_gc(unsigned long arg) static void cw1200_queue_gc(struct timer_list *t)
{ {
LIST_HEAD(list); LIST_HEAD(list);
struct cw1200_queue *queue = struct cw1200_queue *queue =
(struct cw1200_queue *)arg; from_timer(queue, t, gc);
spin_lock_bh(&queue->lock); spin_lock_bh(&queue->lock);
__cw1200_queue_gc(queue, &list, true); __cw1200_queue_gc(queue, &list, true);
...@@ -179,7 +179,7 @@ int cw1200_queue_init(struct cw1200_queue *queue, ...@@ -179,7 +179,7 @@ int cw1200_queue_init(struct cw1200_queue *queue,
INIT_LIST_HEAD(&queue->pending); INIT_LIST_HEAD(&queue->pending);
INIT_LIST_HEAD(&queue->free_pool); INIT_LIST_HEAD(&queue->free_pool);
spin_lock_init(&queue->lock); spin_lock_init(&queue->lock);
setup_timer(&queue->gc, cw1200_queue_gc, (unsigned long)queue); timer_setup(&queue->gc, cw1200_queue_gc, 0);
queue->pool = kzalloc(sizeof(struct cw1200_queue_item) * capacity, queue->pool = kzalloc(sizeof(struct cw1200_queue_item) * capacity,
GFP_KERNEL); GFP_KERNEL);
......
...@@ -2112,10 +2112,9 @@ void cw1200_multicast_stop_work(struct work_struct *work) ...@@ -2112,10 +2112,9 @@ void cw1200_multicast_stop_work(struct work_struct *work)
} }
} }
void cw1200_mcast_timeout(unsigned long arg) void cw1200_mcast_timeout(struct timer_list *t)
{ {
struct cw1200_common *priv = struct cw1200_common *priv = from_timer(priv, t, mcast_timeout);
(struct cw1200_common *)arg;
wiphy_warn(priv->hw->wiphy, wiphy_warn(priv->hw->wiphy,
"Multicast delivery timeout.\n"); "Multicast delivery timeout.\n");
......
...@@ -117,6 +117,6 @@ void cw1200_set_tim_work(struct work_struct *work); ...@@ -117,6 +117,6 @@ void cw1200_set_tim_work(struct work_struct *work);
void cw1200_set_cts_work(struct work_struct *work); void cw1200_set_cts_work(struct work_struct *work);
void cw1200_multicast_start_work(struct work_struct *work); void cw1200_multicast_start_work(struct work_struct *work);
void cw1200_multicast_stop_work(struct work_struct *work); void cw1200_multicast_stop_work(struct work_struct *work);
void cw1200_mcast_timeout(unsigned long arg); void cw1200_mcast_timeout(struct timer_list *t);
#endif #endif
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