modules: fixes ko files that were renamed in 3.1
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28724 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
7c51a806c3
commit
c5dd5d5b5d
|
@ -293,8 +293,13 @@ endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,i2c-mux-pca9541))
|
$(eval $(call KernelPackage,i2c-mux-pca9541))
|
||||||
|
|
||||||
|
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,3.1.0)),1)
|
||||||
|
GPIO_PCA953X_MODULES:= \
|
||||||
|
CONFIG_GPIO_PCA953X:drivers/gpio/gpio-pca953x
|
||||||
|
else
|
||||||
GPIO_PCA953X_MODULES:= \
|
GPIO_PCA953X_MODULES:= \
|
||||||
CONFIG_GPIO_PCA953X:drivers/gpio/pca953x
|
CONFIG_GPIO_PCA953X:drivers/gpio/pca953x
|
||||||
|
endif
|
||||||
|
|
||||||
define KernelPackage/pca953x
|
define KernelPackage/pca953x
|
||||||
$(call i2c_defaults,$(GPIO_PCA953X_MODULES),51)
|
$(call i2c_defaults,$(GPIO_PCA953X_MODULES),51)
|
||||||
|
@ -308,8 +313,13 @@ endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,pca953x))
|
$(eval $(call KernelPackage,pca953x))
|
||||||
|
|
||||||
|
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,3.1.0)),1)
|
||||||
|
GPIO_PCF857X_MODULES:= \
|
||||||
|
CONFIG_GPIO_PCF857X:drivers/gpio/gpio-pcf857x
|
||||||
|
else
|
||||||
GPIO_PCF857X_MODULES:= \
|
GPIO_PCF857X_MODULES:= \
|
||||||
CONFIG_GPIO_PCF857X:drivers/gpio/pcf857x
|
CONFIG_GPIO_PCF857X:drivers/gpio/pcf857x
|
||||||
|
endif
|
||||||
|
|
||||||
define KernelPackage/pcf857x
|
define KernelPackage/pcf857x
|
||||||
$(call i2c_defaults,$(GPIO_PCF857X_MODULES),51)
|
$(call i2c_defaults,$(GPIO_PCF857X_MODULES),51)
|
||||||
|
|
|
@ -62,8 +62,13 @@ define KernelPackage/spi-gpio
|
||||||
TITLE:=GPIO-based bitbanging SPI Master
|
TITLE:=GPIO-based bitbanging SPI Master
|
||||||
DEPENDS:=@GPIO_SUPPORT +kmod-spi-bitbang
|
DEPENDS:=@GPIO_SUPPORT +kmod-spi-bitbang
|
||||||
KCONFIG:=CONFIG_SPI_GPIO
|
KCONFIG:=CONFIG_SPI_GPIO
|
||||||
|
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,3.1.0)),1)
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/spi/spi-gpio.ko
|
||||||
|
AUTOLOAD:=$(call AutoLoad,92,spi-gpio)
|
||||||
|
else
|
||||||
FILES:=$(LINUX_DIR)/drivers/spi/spi_gpio.ko
|
FILES:=$(LINUX_DIR)/drivers/spi/spi_gpio.ko
|
||||||
AUTOLOAD:=$(call AutoLoad,92,spi_gpio)
|
AUTOLOAD:=$(call AutoLoad,92,spi_gpio)
|
||||||
|
endif
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define KernelPackage/spi-gpio/description
|
define KernelPackage/spi-gpio/description
|
||||||
|
|
Loading…
Reference in New Issue