X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/07d9a1e199821121687b0b0a113fb70cfbc10704..769a390d818dfd0957eb259cc7455a01b800c23e:/target/linux/brcm63xx/modules.mk diff --git a/target/linux/brcm63xx/modules.mk b/target/linux/brcm63xx/modules.mk index e48d298bf..2f09f4887 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