summaryrefslogtreecommitdiff
path: root/package/kernel/linux/modules/other.mk
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2016-12-06 17:09:34 +0100
committerJo-Philipp Wich <jo@mein.io>2016-12-14 18:41:21 +0100
commit3494ca66c5aa800f28577cb3849d48a710de8cd0 (patch)
tree4d7055a12a71218f3f11d1f34fbb6de1532ba32c /package/kernel/linux/modules/other.mk
parentfc6ed9521dca405da0a4f93bec504fd497ccf1fe (diff)
downloadmtk-20170518-3494ca66c5aa800f28577cb3849d48a710de8cd0.zip
mtk-20170518-3494ca66c5aa800f28577cb3849d48a710de8cd0.tar.gz
mtk-20170518-3494ca66c5aa800f28577cb3849d48a710de8cd0.tar.bz2
linux: do not autoload sdhci.ko as sdhci-pltfm.ko already depends on it
Currently, installing kmod-sdhci fails with "sdhci is already loaded" since "sdhci.ko" is inserted explicitely first, the implicitely loaded again when "sdhci-pltfm.ko" is inserted as the latter depends on the former. Remove the explicit autoprobe of "sdhci.ko" to fix the postinstall script. Acked-by: John Crispin <john@phrozen.org> Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'package/kernel/linux/modules/other.mk')
-rw-r--r--package/kernel/linux/modules/other.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/kernel/linux/modules/other.mk b/package/kernel/linux/modules/other.mk
index c22f572..0c96969 100644
--- a/package/kernel/linux/modules/other.mk
+++ b/package/kernel/linux/modules/other.mk
@@ -384,7 +384,7 @@ define KernelPackage/sdhci
$(LINUX_DIR)/drivers/mmc/host/sdhci.ko \
$(LINUX_DIR)/drivers/mmc/host/sdhci-pltfm.ko
- AUTOLOAD:=$(call AutoProbe,sdhci sdhci-pltfm,1)
+ AUTOLOAD:=$(call AutoProbe,sdhci-pltfm,1)
endef
define KernelPackage/sdhci/description