rt2x00: Remove superfluous initialization of qidx
There is no need to initialize qidx to zero as it will ever be overwritten by the correct value. 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>
This commit is contained in:
parent
c6084d5fa2
commit
74374725cd
1 changed files with 1 additions and 1 deletions
|
@ -573,7 +573,7 @@ static void rt2800pci_kick_tx_queue(struct data_queue *queue)
|
||||||
{
|
{
|
||||||
struct rt2x00_dev *rt2x00dev = queue->rt2x00dev;
|
struct rt2x00_dev *rt2x00dev = queue->rt2x00dev;
|
||||||
struct queue_entry *entry = rt2x00queue_get_entry(queue, Q_INDEX);
|
struct queue_entry *entry = rt2x00queue_get_entry(queue, Q_INDEX);
|
||||||
unsigned int qidx = 0;
|
unsigned int qidx;
|
||||||
|
|
||||||
if (queue->qid == QID_MGMT)
|
if (queue->qid == QID_MGMT)
|
||||||
qidx = 5;
|
qidx = 5;
|
||||||
|
|
Loading…
Add table
Reference in a new issue