diff options
author | Andy Boyett <agb@openwrt.org> | 2009-01-07 11:07:51 +0000 |
---|---|---|
committer | Andy Boyett <agb@openwrt.org> | 2009-01-07 11:07:51 +0000 |
commit | 9b32b827e7a12b636e12a6375c839bac50e4e516 (patch) | |
tree | 22f7712c2f08251ab49cd1afdd7a9f4cf9603660 /package/kernel | |
parent | ca981989eb040a9ae708cba3adcb1d22397cc439 (diff) | |
download | upstream-9b32b827e7a12b636e12a6375c839bac50e4e516.tar.gz upstream-9b32b827e7a12b636e12a6375c839bac50e4e516.tar.bz2 upstream-9b32b827e7a12b636e12a6375c839bac50e4e516.zip |
[package] kernel: added GPIO driver for CS5535/CS5536 companion chip. Thanks Markus Wigge
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13920 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/kernel')
-rw-r--r-- | package/kernel/modules/other.mk | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk index 0409db748c..f141a3109f 100644 --- a/package/kernel/modules/other.mk +++ b/package/kernel/modules/other.mk @@ -721,3 +721,18 @@ define KernelPackage/spi-dev/description endef $(eval $(call KernelPackage,spi-dev)) + +define KernelPackage/cs5535-gpio + SUBMENU:=$(OTHER_MENU) + TITLE:=AMD CS5535/CS5536 GPIO driver + DEPENDS:=@LINUX_2_6 @TARGET_x86 + KCONFIG:=CONFIG_CS5535_GPIO + FILES:=$(LINUX_DIR)/drivers/char/cs5535_gpio.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,90,cs5535_gpio) +endef + +define KernelPackage/cs5535-gpio/description + This package contains the AMD CS5535/CS5536 GPIO driver +endef + +$(eval $(call KernelPackage,cs5535-gpio)) |