diff options
author | Helmut Schaa <helmut.schaa@googlemail.com> | 2010-08-30 15:12:24 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-08-31 14:22:23 -0400 |
commit | a908a743822d2eed2d8394bb607bb9db5934dcfc (patch) | |
tree | 3d6c3a4ec342eebe61a6964d405d102eaf2d7f7a | |
parent | 56363ddeeed3afc5277ca227209773bc1042cc7b (diff) |
rt2x00: Rename txentry_desc.queue -> txentry_desc.qid
Variables containing queue ids are called qid everywhere else, hence
rename the queue field in txentry_desc to qid as well.
Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2800lib.c | 2 | ||||
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00queue.c | 2 | ||||
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00queue.h | 4 | ||||
-rw-r--r-- | drivers/net/wireless/rt2x00/rt61pci.c | 6 | ||||
-rw-r--r-- | drivers/net/wireless/rt2x00/rt73usb.c | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2800lib.c b/drivers/net/wireless/rt2x00/rt2800lib.c index ecbd07a78edb..25c44cfd7452 100644 --- a/drivers/net/wireless/rt2x00/rt2800lib.c +++ b/drivers/net/wireless/rt2x00/rt2800lib.c | |||
@@ -469,7 +469,7 @@ void rt2800_write_tx_data(struct queue_entry *entry, | |||
469 | txdesc->key_idx : 0xff); | 469 | txdesc->key_idx : 0xff); |
470 | rt2x00_set_field32(&word, TXWI_W1_MPDU_TOTAL_BYTE_COUNT, | 470 | rt2x00_set_field32(&word, TXWI_W1_MPDU_TOTAL_BYTE_COUNT, |
471 | txdesc->length); | 471 | txdesc->length); |
472 | rt2x00_set_field32(&word, TXWI_W1_PACKETID, txdesc->queue + 1); | 472 | rt2x00_set_field32(&word, TXWI_W1_PACKETID, txdesc->qid + 1); |
473 | rt2x00_desc_write(txwi, 1, word); | 473 | rt2x00_desc_write(txwi, 1, word); |
474 | 474 | ||
475 | /* | 475 | /* |
diff --git a/drivers/net/wireless/rt2x00/rt2x00queue.c b/drivers/net/wireless/rt2x00/rt2x00queue.c index 7fb9b6179af1..ecf57635ae51 100644 --- a/drivers/net/wireless/rt2x00/rt2x00queue.c +++ b/drivers/net/wireless/rt2x00/rt2x00queue.c | |||
@@ -312,7 +312,7 @@ static void rt2x00queue_create_tx_descriptor(struct queue_entry *entry, | |||
312 | /* | 312 | /* |
313 | * Initialize information from queue | 313 | * Initialize information from queue |
314 | */ | 314 | */ |
315 | txdesc->queue = entry->queue->qid; | 315 | txdesc->qid = entry->queue->qid; |
316 | txdesc->cw_min = entry->queue->cw_min; | 316 | txdesc->cw_min = entry->queue->cw_min; |
317 | txdesc->cw_max = entry->queue->cw_max; | 317 | txdesc->cw_max = entry->queue->cw_max; |
318 | txdesc->aifs = entry->queue->aifs; | 318 | txdesc->aifs = entry->queue->aifs; |
diff --git a/drivers/net/wireless/rt2x00/rt2x00queue.h b/drivers/net/wireless/rt2x00/rt2x00queue.h index c451a50f7a01..0e38a911195d 100644 --- a/drivers/net/wireless/rt2x00/rt2x00queue.h +++ b/drivers/net/wireless/rt2x00/rt2x00queue.h | |||
@@ -296,7 +296,7 @@ enum txentry_desc_flags { | |||
296 | * Summary of information for the frame descriptor before sending a TX frame. | 296 | * Summary of information for the frame descriptor before sending a TX frame. |
297 | * | 297 | * |
298 | * @flags: Descriptor flags (See &enum queue_entry_flags). | 298 | * @flags: Descriptor flags (See &enum queue_entry_flags). |
299 | * @queue: Queue identification (See &enum data_queue_qid). | 299 | * @qid: Queue identification (See &enum data_queue_qid). |
300 | * @length: Length of the entire frame. | 300 | * @length: Length of the entire frame. |
301 | * @header_length: Length of 802.11 header. | 301 | * @header_length: Length of 802.11 header. |
302 | * @length_high: PLCP length high word. | 302 | * @length_high: PLCP length high word. |
@@ -322,7 +322,7 @@ enum txentry_desc_flags { | |||
322 | struct txentry_desc { | 322 | struct txentry_desc { |
323 | unsigned long flags; | 323 | unsigned long flags; |
324 | 324 | ||
325 | enum data_queue_qid queue; | 325 | enum data_queue_qid qid; |
326 | 326 | ||
327 | u16 length; | 327 | u16 length; |
328 | u16 header_length; | 328 | u16 header_length; |
diff --git a/drivers/net/wireless/rt2x00/rt61pci.c b/drivers/net/wireless/rt2x00/rt61pci.c index 8f017ad8c3db..18829b2eccc3 100644 --- a/drivers/net/wireless/rt2x00/rt61pci.c +++ b/drivers/net/wireless/rt2x00/rt61pci.c | |||
@@ -1778,7 +1778,7 @@ static void rt61pci_write_tx_desc(struct queue_entry *entry, | |||
1778 | * Start writing the descriptor words. | 1778 | * Start writing the descriptor words. |
1779 | */ | 1779 | */ |
1780 | rt2x00_desc_read(txd, 1, &word); | 1780 | rt2x00_desc_read(txd, 1, &word); |
1781 | rt2x00_set_field32(&word, TXD_W1_HOST_Q_ID, txdesc->queue); | 1781 | rt2x00_set_field32(&word, TXD_W1_HOST_Q_ID, txdesc->qid); |
1782 | rt2x00_set_field32(&word, TXD_W1_AIFSN, txdesc->aifs); | 1782 | rt2x00_set_field32(&word, TXD_W1_AIFSN, txdesc->aifs); |
1783 | rt2x00_set_field32(&word, TXD_W1_CWMIN, txdesc->cw_min); | 1783 | rt2x00_set_field32(&word, TXD_W1_CWMIN, txdesc->cw_min); |
1784 | rt2x00_set_field32(&word, TXD_W1_CWMAX, txdesc->cw_max); | 1784 | rt2x00_set_field32(&word, TXD_W1_CWMAX, txdesc->cw_max); |
@@ -1809,7 +1809,7 @@ static void rt61pci_write_tx_desc(struct queue_entry *entry, | |||
1809 | rt2x00_set_field32(&word, TXD_W5_WAITING_DMA_DONE_INT, 1); | 1809 | rt2x00_set_field32(&word, TXD_W5_WAITING_DMA_DONE_INT, 1); |
1810 | rt2x00_desc_write(txd, 5, word); | 1810 | rt2x00_desc_write(txd, 5, word); |
1811 | 1811 | ||
1812 | if (txdesc->queue != QID_BEACON) { | 1812 | if (txdesc->qid != QID_BEACON) { |
1813 | rt2x00_desc_read(txd, 6, &word); | 1813 | rt2x00_desc_read(txd, 6, &word); |
1814 | rt2x00_set_field32(&word, TXD_W6_BUFFER_PHYSICAL_ADDRESS, | 1814 | rt2x00_set_field32(&word, TXD_W6_BUFFER_PHYSICAL_ADDRESS, |
1815 | skbdesc->skb_dma); | 1815 | skbdesc->skb_dma); |
@@ -1856,7 +1856,7 @@ static void rt61pci_write_tx_desc(struct queue_entry *entry, | |||
1856 | */ | 1856 | */ |
1857 | skbdesc->desc = txd; | 1857 | skbdesc->desc = txd; |
1858 | skbdesc->desc_len = | 1858 | skbdesc->desc_len = |
1859 | (txdesc->queue == QID_BEACON) ? TXINFO_SIZE : TXD_DESC_SIZE; | 1859 | (txdesc->qid == QID_BEACON) ? TXINFO_SIZE : TXD_DESC_SIZE; |
1860 | } | 1860 | } |
1861 | 1861 | ||
1862 | /* | 1862 | /* |
diff --git a/drivers/net/wireless/rt2x00/rt73usb.c b/drivers/net/wireless/rt2x00/rt73usb.c index ee2c52fd0d73..ac8f6d0b8f49 100644 --- a/drivers/net/wireless/rt2x00/rt73usb.c +++ b/drivers/net/wireless/rt2x00/rt73usb.c | |||
@@ -1463,7 +1463,7 @@ static void rt73usb_write_tx_desc(struct queue_entry *entry, | |||
1463 | rt2x00_desc_write(txd, 0, word); | 1463 | rt2x00_desc_write(txd, 0, word); |
1464 | 1464 | ||
1465 | rt2x00_desc_read(txd, 1, &word); | 1465 | rt2x00_desc_read(txd, 1, &word); |
1466 | rt2x00_set_field32(&word, TXD_W1_HOST_Q_ID, txdesc->queue); | 1466 | rt2x00_set_field32(&word, TXD_W1_HOST_Q_ID, txdesc->qid); |
1467 | rt2x00_set_field32(&word, TXD_W1_AIFSN, txdesc->aifs); | 1467 | rt2x00_set_field32(&word, TXD_W1_AIFSN, txdesc->aifs); |
1468 | rt2x00_set_field32(&word, TXD_W1_CWMIN, txdesc->cw_min); | 1468 | rt2x00_set_field32(&word, TXD_W1_CWMIN, txdesc->cw_min); |
1469 | rt2x00_set_field32(&word, TXD_W1_CWMAX, txdesc->cw_max); | 1469 | rt2x00_set_field32(&word, TXD_W1_CWMAX, txdesc->cw_max); |