[source] mt76: switch to AutoProbe
LEDE Commits
lede-commits at lists.infradead.org
Fri Oct 27 04:08:26 PDT 2017
jogo pushed a commit to source.git, branch master:
https://git.lede-project.org/5df30a169c5f6366e21a0bbbe87b3e13ccbca63b
commit 5df30a169c5f6366e21a0bbbe87b3e13ccbca63b
Author: Jonas Gorski <jonas.gorski at gmail.com>
AuthorDate: Mon Jul 24 11:16:21 2017 +0200
mt76: switch to AutoProbe
Now that we have working module dependency generation, we can switch to
AutoProbe and let modprobe handle loading required modules.
Signed-off-by: Jonas Gorski <jonas.gorski at gmail.com>
---
package/kernel/mt76/Makefile | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/package/kernel/mt76/Makefile b/package/kernel/mt76/Makefile
index 3428ea1..6214f37 100644
--- a/package/kernel/mt76/Makefile
+++ b/package/kernel/mt76/Makefile
@@ -39,7 +39,6 @@ define KernelPackage/mt76-core
TITLE:=MediaTek MT76xx wireless driver
FILES:=\
$(PKG_BUILD_DIR)/mt76.ko
- AUTOLOAD:=$(call AutoLoad,50,mac80211 mt76)
endef
define KernelPackage/mt76x2
@@ -48,7 +47,7 @@ define KernelPackage/mt76x2
DEPENDS+=+kmod-mt76-core
FILES:=\
$(PKG_BUILD_DIR)/mt76x2e.ko
- AUTOLOAD:=$(call AutoLoad,51,mt76x2e)
+ AUTOLOAD:=$(call AutoProbe,mt76x2e)
endef
define KernelPackage/mt7603
@@ -57,7 +56,7 @@ define KernelPackage/mt7603
DEPENDS+=+kmod-mt76-core
FILES:=\
$(PKG_BUILD_DIR)/mt7603e.ko
- AUTOLOAD:=$(call AutoLoad,51,mt7603e)
+ AUTOLOAD:=$(call AutoProbe,mt7603e)
endef
NOSTDINC_FLAGS = \
More information about the lede-commits
mailing list