Handle drivers/ equally to any other sub directory.

Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6503 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer
2011-04-15 03:30:03 +00:00
committed by Stefan Reinauer
parent 8345a194ba
commit d85400d805
34 changed files with 80 additions and 25 deletions

6
src/drivers/i2c/Kconfig Normal file
View File

@ -0,0 +1,6 @@
source src/drivers/i2c/adm1026/Kconfig
source src/drivers/i2c/adm1027/Kconfig
source src/drivers/i2c/adt7463/Kconfig
source src/drivers/i2c/i2cmux/Kconfig
source src/drivers/i2c/i2cmux2/Kconfig
source src/drivers/i2c/lm63/Kconfig

View File

@ -0,0 +1,6 @@
subdirs-y += adm1026
subdirs-y += adm1027
subdirs-y += adt7463
subdirs-y += i2cmux
subdirs-y += i2cmux2
subdirs-y += lm63

View File

@ -0,0 +1,2 @@
config DRIVERS_I2C_ADM1026
bool

View File

@ -0,0 +1 @@
driver-$(CONFIG_DRIVERS_I2C_ADM1026) += adm1026.c

View File

@ -0,0 +1,2 @@
config DRIVERS_I2C_ADM1027
bool

View File

@ -0,0 +1 @@
driver-$(CONFIG_DRIVERS_I2C_ADM1027) += adm1027.c

View File

@ -0,0 +1,2 @@
config DRIVERS_I2C_ADT7463
bool

View File

@ -0,0 +1 @@
driver-$(CONFIG_DRIVERS_I2C_ADT7463) += adt7463.c

View File

@ -0,0 +1,2 @@
config DRIVERS_I2C_I2CMUX
bool

View File

@ -0,0 +1 @@
driver-$(CONFIG_DRIVERS_I2C_I2CMUX) += i2cmux.c

View File

@ -0,0 +1,2 @@
config DRIVERS_I2C_I2CMUX2
bool

View File

@ -0,0 +1 @@
driver-$(CONFIG_DRIVERS_I2C_I2CMUX2) += i2cmux2.c

View File

@ -0,0 +1,2 @@
config DRIVERS_I2C_LM63
bool

View File

@ -0,0 +1 @@
driver-$(CONFIG_DRIVERS_I2C_LM63) += lm63.c