diff mbox series

[wireless] wifi: mt76: mt7921: fix fw used for offload check for mt7922

Message ID 632d8f0c9781c9902d7160e2c080aa7e9232d50d.1679997487.git.lorenzo@kernel.org
State New
Headers show
Series [wireless] wifi: mt76: mt7921: fix fw used for offload check for mt7922 | expand

Commit Message

Lorenzo Bianconi March 28, 2023, 10:01 a.m. UTC
Fix the firmware version used for offload capability check used by 0x0616
devices. This path enables offload capabilities for 0x0616 devices.

Link: https://bugzilla.kernel.org/show_bug.cgi?id=217245
Fixes: 034ae28b56f1 ("wifi: mt76: mt7921: introduce remain_on_channel support")
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
---
 drivers/net/wireless/mediatek/mt76/mt7921/pci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Linux regression tracking (Thorsten Leemhuis) March 28, 2023, 11:51 a.m. UTC | #1
On 28.03.23 12:01, Lorenzo Bianconi wrote:
> Fix the firmware version used for offload capability check used by 0x0616
> devices. This path enables offload capabilities for 0x0616 devices.
> 
> Link: https://bugzilla.kernel.org/show_bug.cgi?id=217245
> Fixes: 034ae28b56f1 ("wifi: mt76: mt7921: introduce remain_on_channel support")
> Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>

Please add a

Cc: stable@vger.kernel.org

To ensure this is backported to the 6.2 series (a fixes tag is not
guaranteed to suffice).

Ciao, Thorsten
Kalle Valo March 31, 2023, 3:03 p.m. UTC | #2
Lorenzo Bianconi <lorenzo@kernel.org> wrote:

> Fix the firmware version used for offload capability check used by 0x0616
> devices. This path enables offload capabilities for 0x0616 devices.
> 
> Link: https://bugzilla.kernel.org/show_bug.cgi?id=217245
> Fixes: 034ae28b56f1 ("wifi: mt76: mt7921: introduce remain_on_channel support")
> Cc: stable@vger.kernel.org
> Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>

Patch applied to wireless.git, thanks.

eb85df0a5643 wifi: mt76: mt7921: fix fw used for offload check for mt7922
diff mbox series

Patch

diff --git a/drivers/net/wireless/mediatek/mt76/mt7921/pci.c b/drivers/net/wireless/mediatek/mt76/mt7921/pci.c
index cb72ded37256..5c23c827abe4 100644
--- a/drivers/net/wireless/mediatek/mt76/mt7921/pci.c
+++ b/drivers/net/wireless/mediatek/mt76/mt7921/pci.c
@@ -20,7 +20,7 @@  static const struct pci_device_id mt7921_pci_device_table[] = {
 	{ PCI_DEVICE(PCI_VENDOR_ID_MEDIATEK, 0x0608),
 		.driver_data = (kernel_ulong_t)MT7921_FIRMWARE_WM },
 	{ PCI_DEVICE(PCI_VENDOR_ID_MEDIATEK, 0x0616),
-		.driver_data = (kernel_ulong_t)MT7921_FIRMWARE_WM },
+		.driver_data = (kernel_ulong_t)MT7922_FIRMWARE_WM },
 	{ },
 };