Skip to content

Commit

Permalink
rt2x00: Initialize QID from queue->qid
Browse files Browse the repository at this point in the history
The QID_MGMT is assigned to the beacon and atim queue
during initialization. This means we don't need a seperate
check in write_tx_desc()..

Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Ivo van Doorn authored and John W. Linville committed Feb 29, 2008
1 parent 871ff6e commit 091ed31
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions drivers/net/wireless/rt2x00/rt2x00dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -628,21 +628,11 @@ void rt2x00lib_write_tx_desc(struct rt2x00_dev *rt2x00dev,

memset(&txdesc, 0, sizeof(txdesc));

txdesc.queue = skbdesc->entry->queue->qid;
txdesc.cw_min = skbdesc->entry->queue->cw_min;
txdesc.cw_max = skbdesc->entry->queue->cw_max;
txdesc.aifs = skbdesc->entry->queue->aifs;

/*
* Identify queue
*/
if (control->queue < rt2x00dev->hw->queues)
txdesc.queue = control->queue;
else if (control->queue == IEEE80211_TX_QUEUE_BEACON ||
control->queue == IEEE80211_TX_QUEUE_AFTER_BEACON)
txdesc.queue = QID_MGMT;
else
txdesc.queue = QID_OTHER;

/*
* Read required fields from ieee80211 header.
*/
Expand Down

0 comments on commit 091ed31

Please sign in to comment.