From: Gabor Juhos Date: Sat, 6 Apr 2013 16:55:25 +0000 (+0000) Subject: package/kernel: only include i2c-of if CONFIG_OF enabled X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=38b4865a68a267b2e3a90bfc3ddabb06bf412a02;p=librecmc%2Flibrecmc.git package/kernel: only include i2c-of if CONFIG_OF enabled Signed-off-by: Gabor Juhos SVN-Revision: 36227 --- diff --git a/package/kernel/modules/i2c.mk b/package/kernel/modules/i2c.mk index 5cf929de97..085570836f 100644 --- a/package/kernel/modules/i2c.mk +++ b/package/kernel/modules/i2c.mk @@ -22,9 +22,12 @@ endef I2C_CORE_MODULES:= \ CONFIG_I2C:drivers/i2c/i2c-core \ - CONFIG_OF_I2C:drivers/of/of_i2c \ CONFIG_I2C_CHARDEV:drivers/i2c/i2c-dev +ifeq (CONFIG_OF,y) + I2C_CORE_MODULES+=CONFIG_OF_I2C:drivers/of/of_i2c +endif + define KernelPackage/i2c-core $(call i2c_defaults,$(I2C_CORE_MODULES),51) TITLE:=I2C support