Browse Source

Fix i2c kernel configuration dependency (#1511)

SVN-Revision: 6811
Florian Fainelli 19 years ago
parent
commit
e4c0f1e97b
1 changed files with 1 additions and 2 deletions
  1. 1 2
      package/kernel/modules/i2c.mk

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

@@ -12,8 +12,7 @@ define KernelPackage/i2c-core
   TITLE:=I2C support
   DESCRIPTION:=Kernel modules for i2c support
   SUBMENU:=$(I2CMENU)
-  KCONFIG:=$(CONFIG_I2C_CORE) \
-	$(CONFIG_I2C_DEV)
+  KCONFIG:=$(CONFIG_I2C)
   FILES:=$(MODULES_DIR)/kernel/drivers/i2c/*.$(LINUX_KMOD_SUFFIX)
   AUTOLOAD:=$(call AutoLoad,50,i2c-core i2c-dev)
 endef