diff options
author | Daniel Dickinson <crazycshore@gmail.com> | 2011-10-03 03:04:11 +0000 |
---|---|---|
committer | Daniel Dickinson <crazycshore@gmail.com> | 2011-10-03 03:04:11 +0000 |
commit | aaba775f36c61e5c78bc372ff5d4c758b9209799 (patch) | |
tree | db6479b0c6cb7b2f28c3d6abcb92a9ded7b8897d /package | |
parent | 541aa8e38ec31fb44474df6b6e9c6b3aba9cfeca (diff) | |
download | upstream-aaba775f36c61e5c78bc372ff5d4c758b9209799.tar.gz upstream-aaba775f36c61e5c78bc372ff5d4c758b9209799.tar.bz2 upstream-aaba775f36c61e5c78bc372ff5d4c758b9209799.zip |
The name gpio-cs5535 used to refer to the drivers/char/ module, but in 3.1 it refers to what had been drivers/gpio/cs5535-gpio in more recent kernels. Philip Prindeville - 2011-08-29 04:55:59
SVN-Revision: 28354
Diffstat (limited to 'package')
-rw-r--r-- | package/kernel/modules/other.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk index 1e252e3746..91fc17c38d 100644 --- a/package/kernel/modules/other.mk +++ b/package/kernel/modules/other.mk @@ -160,8 +160,13 @@ define KernelPackage/gpio-cs5535-new TITLE:=AMD CS5535/CS5536 GPIO driver with improved sysfs support DEPENDS:=@TARGET_x86 +kmod-cs5535-mfd @!(LINUX_2_6_30||LINUX_2_6_31||LINUX_2_6_32) KCONFIG:=CONFIG_GPIO_CS5535 +ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,3.1.0)),1) + FILES:=$(LINUX_DIR)/drivers/gpio/gpio-cs5535.ko + AUTOLOAD:=$(call AutoLoad,50,gpio-cs5535) +else FILES:=$(LINUX_DIR)/drivers/gpio/cs5535-gpio.ko AUTOLOAD:=$(call AutoLoad,50,cs5535-gpio) +endif endef define KernelPackage/gpio-cs5535-new/description |