From: Daniel Pawlik Date: Thu, 22 Aug 2024 19:00:40 +0000 (+0200) Subject: mt76: Change AutoLoad macro call for mt7925e and mt7925u X-Git-Tag: v24.10.0-rc1~943 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F16236%2Fhead;p=thirdparty%2Fopenwrt.git mt76: Change AutoLoad macro call for mt7925e and mt7925u There was a typo done for mt7925e and mt7925u in the KernelPackage definitions, which caused the system to load the wrong kernel modules. Signed-off-by: Daniel Pawlik Link: https://github.com/openwrt/openwrt/pull/16236 Signed-off-by: Hauke Mehrtens --- diff --git a/package/kernel/mt76/Makefile b/package/kernel/mt76/Makefile index 27a52275d85..5e5c378953d 100644 --- a/package/kernel/mt76/Makefile +++ b/package/kernel/mt76/Makefile @@ -348,7 +348,7 @@ define KernelPackage/mt7925u TITLE:=MediaTek MT7925U wireless driver DEPENDS+=+kmod-mt792x-usb +kmod-mt7925-common FILES:= $(PKG_BUILD_DIR)/mt7925/mt7925u.ko - AUTOLOAD:=$(call AutoProbe,mt7921u) + AUTOLOAD:=$(call AutoProbe,mt7925u) endef define KernelPackage/mt7925e @@ -356,7 +356,7 @@ define KernelPackage/mt7925e TITLE:=MediaTek MT7925e wireless driver DEPENDS+=@PCI_SUPPORT +kmod-mt7925-common FILES:= $(PKG_BUILD_DIR)/mt7925/mt7925e.ko - AUTOLOAD:=$(call AutoProbe,mt7921e) + AUTOLOAD:=$(call AutoProbe,mt7925e) endef define Package/mt76-test