X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=blobdiff_plain;f=package%2Fkernel%2Fmodules%2Fspi.mk;h=416209825f57cbf1857d1718da3925561ec50465;hp=ff24d9f663ac107303c01a1858c6ff821d733312;hb=801985e5286881dd578a19280b2a6c8e212a530d;hpb=41b338706ba06652e7f77f50b8cdb22818c5aee0 diff --git a/package/kernel/modules/spi.mk b/package/kernel/modules/spi.mk index ff24d9f663..416209825f 100644 --- a/package/kernel/modules/spi.mk +++ b/package/kernel/modules/spi.mk @@ -31,13 +31,8 @@ define KernelPackage/spi-bitbang KCONFIG:=CONFIG_SPI_BITBANG \ CONFIG_SPI=y \ CONFIG_SPI_MASTER=y - ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,3.1)),1) - FILES:=$(LINUX_DIR)/drivers/spi/spi-bitbang.ko - AUTOLOAD:=$(call AutoLoad,91,spi-bitbang) - else - FILES:=$(LINUX_DIR)/drivers/spi/spi_bitbang.ko - AUTOLOAD:=$(call AutoLoad,91,spi_bitbang) - endif + FILES:=$(LINUX_DIR)/drivers/spi/spi-bitbang.ko + AUTOLOAD:=$(call AutoLoad,91,spi-bitbang) endef define KernelPackage/spi-bitbang/description @@ -67,13 +62,8 @@ define KernelPackage/spi-gpio TITLE:=GPIO-based bitbanging SPI Master DEPENDS:=@GPIO_SUPPORT +kmod-spi-bitbang KCONFIG:=CONFIG_SPI_GPIO - ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,3.1)),1) - FILES:=$(LINUX_DIR)/drivers/spi/spi-gpio.ko - AUTOLOAD:=$(call AutoLoad,92,spi-gpio) - else - FILES:=$(LINUX_DIR)/drivers/spi/spi_gpio.ko - AUTOLOAD:=$(call AutoLoad,92,spi_gpio) - endif + FILES:=$(LINUX_DIR)/drivers/spi/spi-gpio.ko + AUTOLOAD:=$(call AutoLoad,92,spi-gpio) endef define KernelPackage/spi-gpio/description @@ -98,18 +88,3 @@ endef $(eval $(call KernelPackage,spi-dev)) - -define KernelPackage/spi-vsc7385 - SUBMENU:=$(SPI_MENU) - TITLE:=Vitesse VSC7385 ethernet switch driver - DEPENDS:=@TARGET_ar71xx - KCONFIG:=CONFIG_SPI_VSC7385 - FILES:=$(LINUX_DIR)/drivers/spi/spi_vsc7385.ko - AUTOLOAD:=$(call AutoLoad,93,spi_vsc7385) -endef - -define KernelPackage/spi-vsc7385/description - This package contains the SPI driver for the Vitesse VSC7385 ethernet switch. -endef - -$(eval $(call KernelPackage,spi-vsc7385))