kernel: wpan: Add missing AUTOLOAD to load kernel module
These kernel modules were not loaded automatically, fix this by adding the AUTOLOAD definition. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
parent
eb531337a7
commit
b0751d4c0f
1 changed files with 3 additions and 0 deletions
|
@ -88,6 +88,7 @@ define KernelPackage/at86rf230
|
||||||
CONFIG_SPI=y \
|
CONFIG_SPI=y \
|
||||||
CONFIG_SPI_MASTER=y
|
CONFIG_SPI_MASTER=y
|
||||||
FILES:=$(LINUX_DIR)/drivers/net/ieee802154/at86rf230.ko
|
FILES:=$(LINUX_DIR)/drivers/net/ieee802154/at86rf230.ko
|
||||||
|
AUTOLOAD:=$(call AutoProbe,at86rf230)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,at86rf230))
|
$(eval $(call KernelPackage,at86rf230))
|
||||||
|
@ -100,6 +101,7 @@ define KernelPackage/mrf24j40
|
||||||
CONFIG_SPI=y \
|
CONFIG_SPI=y \
|
||||||
CONFIG_SPI_MASTER=y
|
CONFIG_SPI_MASTER=y
|
||||||
FILES:=$(LINUX_DIR)/drivers/net/ieee802154/mrf24j40.ko
|
FILES:=$(LINUX_DIR)/drivers/net/ieee802154/mrf24j40.ko
|
||||||
|
AUTOLOAD:=$(call AutoProbe,mrf24j40)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,mrf24j40))
|
$(eval $(call KernelPackage,mrf24j40))
|
||||||
|
@ -112,6 +114,7 @@ define KernelPackage/cc2520
|
||||||
CONFIG_SPI=y \
|
CONFIG_SPI=y \
|
||||||
CONFIG_SPI_MASTER=y
|
CONFIG_SPI_MASTER=y
|
||||||
FILES:=$(LINUX_DIR)/drivers/net/ieee802154/cc2520.ko
|
FILES:=$(LINUX_DIR)/drivers/net/ieee802154/cc2520.ko
|
||||||
|
AUTOLOAD:=$(call AutoProbe,cc2520)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,cc2520))
|
$(eval $(call KernelPackage,cc2520))
|
||||||
|
|
Loading…
Reference in a new issue