From d0ab636cb61cc9467d97bf52b2871718dbb91c45 Mon Sep 17 00:00:00 2001 From: Lorenzo Bianconi Date: Fri, 11 Feb 2022 18:14:00 +0100 Subject: [PATCH] mt76: mt7915: fix endianness warnings in mt7915_mac_tx_free() Fix the following sparse warning in mt7915_mac_tx_free routine: warning: incorrect type in assignment (different base types) expected unsigned int [usertype] *cur_info got restricted __le32 * warning: cast to restricted __le32 Fixes: c17780e7b21ec ("mt76: mt7915: add txfree event v3") Signed-off-by: Lorenzo Bianconi Signed-off-by: Felix Fietkau --- mt7915/mac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mt7915/mac.c b/mt7915/mac.c index 8bb66a6b6..06186c034 100644 --- a/mt7915/mac.c +++ b/mt7915/mac.c @@ -1427,7 +1427,7 @@ mt7915_mac_tx_free(struct mt7915_dev *dev, void *data, int len) bool v3, wake = false; u16 total, count = 0; u32 txd = le32_to_cpu(free->txd); - u32 *cur_info; + __le32 *cur_info; /* clean DMA queues and unmap buffers first */ mt76_queue_tx_cleanup(dev, dev->mphy.q_tx[MT_TXQ_PSD], false);