Explorar o código

package/kernel: only include i2c-of if CONFIG_OF enabled

Signed-off-by: Gabor Juhos <[email protected]>

SVN-Revision: 36227
Gabor Juhos %!s(int64=12) %!d(string=hai) anos
pai
achega
38b4865a68
Modificáronse 1 ficheiros con 4 adicións e 1 borrados
  1. 4 1
      package/kernel/modules/i2c.mk

+ 4 - 1
package/kernel/modules/i2c.mk

@@ -22,9 +22,12 @@ endef
 
 
 I2C_CORE_MODULES:= \
 I2C_CORE_MODULES:= \
   CONFIG_I2C:drivers/i2c/i2c-core \
   CONFIG_I2C:drivers/i2c/i2c-core \
-  CONFIG_OF_I2C:drivers/of/of_i2c \
   CONFIG_I2C_CHARDEV:drivers/i2c/i2c-dev
   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
 define KernelPackage/i2c-core
   $(call i2c_defaults,$(I2C_CORE_MODULES),51)
   $(call i2c_defaults,$(I2C_CORE_MODULES),51)
   TITLE:=I2C support
   TITLE:=I2C support