summaryrefslogtreecommitdiff
path: root/drivers/staging/cw1200/queue.h
diff options
context:
space:
mode:
authorDmitry Tarnyagin <dmitry.tarnyagin@stericsson.com>2011-10-05 09:29:01 +0200
committerPhilippe LANGLAIS <philippe.langlais@stericsson.com>2011-10-13 10:23:25 +0200
commit5a3348f06558026c5c842112b83674e00903064c (patch)
tree1bf2ffa5c77ad60ee487364a62978cbd08b818b0 /drivers/staging/cw1200/queue.h
parent868040fa7b15aa1adf7af925f89dfa6c3b0b7a3c (diff)
cw1200: AP PS refactoring.
* buffered_multicasts_lock was renamed to ps_state_lock. Previous name was quite confusive. * Per-STA rx_queue was created for early RX-ed frames. Not that we really need these frames, but PM status they are holding is important. * priv->tx_suspend_mask was removed, driver is not using it. It was intended for UAPSD and is not needed in current implementation on mac80211. * Fix: cw1200_queue_unlock() was not called from cw1200_queue_clear() when queue was internally locked. ST-Ericsson ID: 360749 Change-Id: I61346db485d34f761d80af786b716d8c73e8b600 Signed-off-by: Dmitry Tarnyagin <dmitry.tarnyagin@stericsson.com> Reviewed-on: http://gerrit.lud.stericsson.com/gerrit/33541 Reviewed-by: Bartosz MARKOWSKI <bartosz.markowski@tieto.com> Reviewed-by: Philippe LANGLAIS <philippe.langlais@stericsson.com>
Diffstat (limited to 'drivers/staging/cw1200/queue.h')
-rw-r--r--drivers/staging/cw1200/queue.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/staging/cw1200/queue.h b/drivers/staging/cw1200/queue.h
index 195d6acb6ec..502496b142b 100644
--- a/drivers/staging/cw1200/queue.h
+++ b/drivers/staging/cw1200/queue.h
@@ -60,9 +60,10 @@ int cw1200_queue_init(struct cw1200_queue *queue,
struct cw1200_queue_stats *stats,
u8 queue_id,
size_t capacity);
-int cw1200_queue_clear(struct cw1200_queue *queue);
+int cw1200_queue_clear(struct cw1200_queue *queue, struct cw1200_common *priv);
void cw1200_queue_stats_deinit(struct cw1200_queue_stats *stats);
-void cw1200_queue_deinit(struct cw1200_queue *queue);
+void cw1200_queue_deinit(struct cw1200_queue *queue,
+ struct cw1200_common *priv);
size_t cw1200_queue_get_num_queued(struct cw1200_queue *queue,
u32 link_id_map);