Skip to content
Snippets Groups Projects
Commit 1789fda3 authored by Zoltan Herpai's avatar Zoltan Herpai
Browse files

kernel: of_i2c is moved into i2c-core in 3.12, add kernel version check into modules/i2c.mk


Signed-off-by: default avatarZoltan HERPAI <wigyori@uid0.hu>

SVN-Revision: 38760
parent df493faf
No related branches found
No related tags found
No related merge requests found
...@@ -24,8 +24,10 @@ I2C_CORE_MODULES:= \ ...@@ -24,8 +24,10 @@ I2C_CORE_MODULES:= \
CONFIG_I2C:drivers/i2c/i2c-core \ CONFIG_I2C:drivers/i2c/i2c-core \
CONFIG_I2C_CHARDEV:drivers/i2c/i2c-dev CONFIG_I2C_CHARDEV:drivers/i2c/i2c-dev
ifeq ($(CONFIG_OF),y) ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),lt,3.12.0)),1)
I2C_CORE_MODULES+=CONFIG_OF_I2C:drivers/of/of_i2c ifeq ($(CONFIG_OF),y)
I2C_CORE_MODULES+=CONFIG_OF_I2C:drivers/of/of_i2c
endif
endif endif
define KernelPackage/i2c-core define KernelPackage/i2c-core
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment