]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
wifi: mt76: mt7996: fix efuse reading issue
authorStanleyYP Wang <StanleyYP.Wang@mediatek.com>
Fri, 26 Jan 2024 09:09:19 +0000 (17:09 +0800)
committerSasha Levin <sashal@kernel.org>
Tue, 26 Mar 2024 22:19:33 +0000 (18:19 -0400)
[ Upstream commit d3ad99be7cc2d174126d908addd6bea2b157aa75 ]

The efuse data starts from the 48th bytes instead of 64th bytes in the
returned event skb.

Fixes: 98686cd21624 ("wifi: mt76: mt7996: add driver for MediaTek Wi-Fi 7 (802.11be) devices")
Signed-off-by: StanleyYP Wang <StanleyYP.Wang@mediatek.com>
Signed-off-by: Shayne Chen <shayne.chen@mediatek.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/wireless/mediatek/mt76/mt7996/mcu.c

index 650c43cb899f72495c26b7c6538aef807ac47876..b4ea7d0a7f5a0b6d60ea6a110275dae3cd74acb6 100644 (file)
@@ -3100,7 +3100,7 @@ int mt7996_mcu_get_eeprom(struct mt7996_dev *dev, u32 offset)
                u32 addr = le32_to_cpu(*(__le32 *)(skb->data + 12));
                u8 *buf = (u8 *)dev->mt76.eeprom.data + addr;
 
-               skb_pull(skb, 64);
+               skb_pull(skb, 48);
                memcpy(buf, skb->data, MT7996_EEPROM_BLOCK_SIZE);
        }