wifi: mt76: fix typo in mt76_get_of_eeprom_from_nvmem function
[ Upstream commit c33e5f4cbb9f961e66473a9ace077c4d1f29a5bb ]
Fix typo in mt76_get_of_eeprom_from_nvmem where eeprom was misspelled as
epprom.
Fixes: 5bef3a406c
("wifi: mt76: add support for providing eeprom in nvmem cells")
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
27aca54b0d
commit
b9b61d1590
|
@ -106,7 +106,7 @@ out_put_node:
|
|||
#endif
|
||||
}
|
||||
|
||||
static int mt76_get_of_epprom_from_nvmem(struct mt76_dev *dev, void *eep, int len)
|
||||
static int mt76_get_of_eeprom_from_nvmem(struct mt76_dev *dev, void *eep, int len)
|
||||
{
|
||||
struct device_node *np = dev->dev->of_node;
|
||||
struct nvmem_cell *cell;
|
||||
|
@ -153,7 +153,7 @@ int mt76_get_of_eeprom(struct mt76_dev *dev, void *eep, int offset, int len)
|
|||
if (!ret)
|
||||
return 0;
|
||||
|
||||
return mt76_get_of_epprom_from_nvmem(dev, eep, len);
|
||||
return mt76_get_of_eeprom_from_nvmem(dev, eep, len);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(mt76_get_of_eeprom);
|
||||
|
||||
|
|
Loading…
Reference in New Issue