From: Zoltan Herpai Date: Mon, 11 Nov 2013 22:03:35 +0000 (+0000) Subject: kernel: of_i2c is moved into i2c-core in 3.12, add kernel version check into modules... X-Git-Tag: reboot~8667 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fchunkeey.git;a=commitdiff_plain;h=1789fda3fb230b9a0bfbcb1f57b29f23a47ef17d kernel: of_i2c is moved into i2c-core in 3.12, add kernel version check into modules/i2c.mk Signed-off-by: Zoltan HERPAI SVN-Revision: 38760 --- diff --git a/package/kernel/linux/modules/i2c.mk b/package/kernel/linux/modules/i2c.mk index 8a26f42e75..c0f9f813ec 100644 --- a/package/kernel/linux/modules/i2c.mk +++ b/package/kernel/linux/modules/i2c.mk @@ -24,8 +24,10 @@ I2C_CORE_MODULES:= \ CONFIG_I2C:drivers/i2c/i2c-core \ CONFIG_I2C_CHARDEV:drivers/i2c/i2c-dev -ifeq ($(CONFIG_OF),y) - I2C_CORE_MODULES+=CONFIG_OF_I2C:drivers/of/of_i2c +ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),lt,3.12.0)),1) + ifeq ($(CONFIG_OF),y) + I2C_CORE_MODULES+=CONFIG_OF_I2C:drivers/of/of_i2c + endif endif define KernelPackage/i2c-core