]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mt76: Remove set but not used variable 'idx'
authorzhengbin <zhengbin13@huawei.com>
Tue, 29 Oct 2019 04:48:39 +0000 (12:48 +0800)
committerFelix Fietkau <nbd@nbd.name>
Wed, 20 Nov 2019 12:23:51 +0000 (13:23 +0100)
Fixes gcc '-Wunused-but-set-variable' warning:

drivers/net/wireless/mediatek/mt76/dma.c: In function mt76_dma_rx_fill:
drivers/net/wireless/mediatek/mt76/dma.c:377:6: warning: variable idx set but not used [-Wunused-but-set-variable]

It is not used since commit 17f1de56df05 ("mt76:
add common code shared between multiple chipsets")

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: zhengbin <zhengbin13@huawei.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/dma.c

index 3de744fb5e7a5424a701a15003dd0912d939d80e..6173c80189ba3e10c31a6b5f5f4575d7e06933e5 100644 (file)
@@ -365,7 +365,6 @@ mt76_dma_rx_fill(struct mt76_dev *dev, struct mt76_queue *q)
        int frames = 0;
        int len = SKB_WITH_OVERHEAD(q->buf_size);
        int offset = q->buf_offset;
-       int idx;
 
        spin_lock_bh(&q->lock);
 
@@ -384,7 +383,7 @@ mt76_dma_rx_fill(struct mt76_dev *dev, struct mt76_queue *q)
 
                qbuf.addr = addr + offset;
                qbuf.len = len - offset;
-               idx = mt76_dma_add_buf(dev, q, &qbuf, 1, 0, buf, NULL);
+               mt76_dma_add_buf(dev, q, &qbuf, 1, 0, buf, NULL);
                frames++;
        }