wifi: mt76: mt7996: fix efuse reading issue
[ 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>
This commit is contained in:
parent
9d87f925af
commit
0e8c4809dd
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user