Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b13dc8a8 authored by Lorenzo Bianconi's avatar Lorenzo Bianconi Committed by Felix Fietkau
Browse files

mt76x0: pci: add missing MODULE_FIRMWARE macro



Add missing firmware declaration for mt76x0e driver

Signed-off-by: default avatarLorenzo Bianconi <lorenzo.bianconi@redhat.com>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 00eccdd6
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -28,6 +28,9 @@
#include "../mt76x02.h"
#include "eeprom.h"

#define MT7610E_FIRMWARE		"mediatek/mt7610e.bin"
#define MT7650E_FIRMWARE		"mediatek/mt7650e.bin"

#define MT_USB_AGGR_SIZE_LIMIT		21 /* * 1024B */
#define MT_USB_AGGR_TIMEOUT		0x80 /* * 33ns */

+2 −0
Original line number Diff line number Diff line
@@ -211,6 +211,8 @@ static const struct pci_device_id mt76x0e_device_table[] = {
};

MODULE_DEVICE_TABLE(pci, mt76x0e_device_table);
MODULE_FIRMWARE(MT7610E_FIRMWARE);
MODULE_FIRMWARE(MT7650E_FIRMWARE);
MODULE_LICENSE("Dual BSD/GPL");

static struct pci_driver mt76x0e_driver = {
+0 −3
Original line number Diff line number Diff line
@@ -19,9 +19,6 @@
#include "mt76x0.h"
#include "mcu.h"

#define MT7610E_FIRMWARE	"mediatek/mt7610e.bin"
#define MT7650E_FIRMWARE	"mediatek/mt7650e.bin"

#define MT_MCU_IVB_ADDR		(MT_MCU_ILM_ADDR + 0x54000 - MT_MCU_IVB_SIZE)

static int mt76x0e_load_firmware(struct mt76x02_dev *dev)