diff options
Diffstat (limited to 'target/linux/brcm63xx/modules.mk')
-rw-r--r-- | target/linux/brcm63xx/modules.mk | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/target/linux/brcm63xx/modules.mk b/target/linux/brcm63xx/modules.mk index e48d298bf0..2f09f48874 100644 --- a/target/linux/brcm63xx/modules.mk +++ b/target/linux/brcm63xx/modules.mk @@ -10,8 +10,13 @@ define KernelPackage/bcm63xx-spi TITLE:=Broadcom BCM63xx SPI driver DEPENDS:=@TARGET_brcm63xx +kmod-spi-bitbang KCONFIG:=CONFIG_SPI_BCM63XX - FILES:=$(LINUX_DIR)/drivers/spi/bcm63xx_spi.ko - AUTOLOAD:=$(call AutoLoad,92,bcm63xx_spi) + ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,3.3)),1) + FILES:=$(LINUX_DIR)/drivers/spi/spi-bcm63xx.ko + AUTOLOAD:=$(call AutoLoad,92,spi-bcm63xx) + else + FILES:=$(LINUX_DIR)/drivers/spi/bcm63xx_spi.ko + AUTOLOAD:=$(call AutoLoad,92,bcm63xx_spi) + endif endef define KernelPackage/bcm63xx-spi/description |