diff options
author | Kuo-Jung Su <dantesu@faraday-tech.com> | 2013-05-08 15:36:26 +0800 |
---|---|---|
committer | Heiko Schocher <hs@denx.de> | 2013-07-23 08:34:58 +0200 |
commit | 3cff842bca8aa78fc49436711873466db9be21f8 (patch) | |
tree | fd6f4bf8ee61de718c88f11c4d9814ab47452ec3 /drivers/i2c/Makefile | |
parent | 30ea41a489cbfed311f904bd08cb3319f0e73b72 (diff) | |
download | u-boot-imx-3cff842bca8aa78fc49436711873466db9be21f8.zip u-boot-imx-3cff842bca8aa78fc49436711873466db9be21f8.tar.gz u-boot-imx-3cff842bca8aa78fc49436711873466db9be21f8.tar.bz2 |
i2c: add Faraday FTI2C010 I2C controller support
Faraday FTI2C010 is a multi-function I2C controller
which supports both master and slave mode.
This patch simplily implements the master mode only.
Signed-off-by: Kuo-Jung Su <dantesu@faraday-tech.com>
CC: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'drivers/i2c/Makefile')
-rw-r--r-- | drivers/i2c/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/i2c/Makefile b/drivers/i2c/Makefile index 360f93e..8f484f7 100644 --- a/drivers/i2c/Makefile +++ b/drivers/i2c/Makefile @@ -44,6 +44,7 @@ COBJS-$(CONFIG_SH_I2C) += sh_i2c.o COBJS-$(CONFIG_SH_SH7734_I2C) += sh_sh7734_i2c.o COBJS-$(CONFIG_SYS_I2C) += i2c_core.o COBJS-$(CONFIG_SYS_I2C_FSL) += fsl_i2c.o +COBJS-$(CONFIG_SYS_I2C_FTI2C010) += fti2c010.o COBJS-$(CONFIG_SYS_I2C_PPC4XX) += ppc4xx_i2c.o COBJS-$(CONFIG_SYS_I2C_SOFT) += soft_i2c.o COBJS-$(CONFIG_SYS_I2C_TEGRA) += tegra_i2c.o |