1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-01 08:31:19 +02:00

kernel/modules: make use the new GPIO_SUPPORT option

SVN-Revision: 10980
This commit is contained in:
Gabor Juhos 2008-04-29 17:21:08 +00:00
parent 363c6e196a
commit 4006f2fbdd
2 changed files with 4 additions and 4 deletions

@ -79,7 +79,7 @@ $(eval $(call KernelPackage,i2c-algo-pcf))
define KernelPackage/i2c-gpio
SUBMENU:=$(I2C_MENU)
TITLE:=GPIO-based bitbanging I2C
DEPENDS:=kmod-i2c-core +kmod-i2c-algo-bit
DEPENDS:=@GPIO_SUPPORT kmod-i2c-core +kmod-i2c-algo-bit
KCONFIG:=CONFIG_I2C_GPIO
FILES:=$(LINUX_DIR)/drivers/i2c/busses/i2c-gpio.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,59,i2c-gpio)

@ -294,7 +294,7 @@ $(eval $(call KernelPackage,softdog))
define KernelPackage/leds-gpio
SUBMENU:=$(OTHER_MENU)
TITLE:=GPIO LED support
DEPENDS:=@TARGET_adm5120
DEPENDS:= @GPIO_SUPPORT
KCONFIG:=CONFIG_LEDS_GPIO
FILES:=$(LINUX_DIR)/drivers/leds/leds-gpio.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,60,leds-gpio)
@ -533,7 +533,7 @@ $(eval $(call KernelPackage,input-polldev))
define KernelPackage/input-gpio-buttons
SUBMENU:=$(OTHER_MENU)
TITLE:=Polled GPIO buttons input device
DEPENDS:=+kmod-input-polldev @LINUX_2_6
DEPENDS:=@GPIO_SUPPORT +kmod-input-polldev
KCONFIG:= \
CONFIG_INPUT_GPIO_BUTTONS \
CONFIG_INPUT_MISC=y
@ -611,7 +611,7 @@ $(eval $(call KernelPackage,spi-bitbang))
define KernelPackage/spi-gpio
SUBMENU:=$(OTHER_MENU)
TITLE:=GPIO based bitbanging SPI controller
DEPENDS:=@LINUX_2_6 +kmod-spi-bitbang
DEPENDS:=@GPIO_SUPPORT +kmod-spi-bitbang
KCONFIG:=CONFIG_SPI_GPIO
FILES:=$(LINUX_DIR)/drivers/spi/spi_gpio.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,92,spi_gpio)