diff options
author | Stefan Roese <sr@denx.de> | 2016-09-16 13:07:50 (GMT) |
---|---|---|
committer | Heiko Schocher <hs@denx.de> | 2016-09-26 08:41:03 (GMT) |
commit | 340fcd66ccd90b78763b76555eb0576be86fe1d1 (patch) | |
tree | 6de3031c1fe073861c77d5686038157855062f39 /drivers | |
parent | 8eff909a56919f0b048cc2f269c470e31157f86c (diff) | |
download | u-boot-340fcd66ccd90b78763b76555eb0576be86fe1d1.tar.xz |
i2c: mv_i2c.c: Remove CONFIG_HARD_I2C
CONFIG_HARD_I2C is not needed, lets remove it.
Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Nadav Haklai <nadavh@marvell.com>
Cc: Kostya Porotchkin <kostap@marvell.com>
Cc: Wilson Ding <dingwei@marvell.com>
Cc: Victor Gu <xigu@marvell.com>
Cc: Hua Jing <jinghua@marvell.com>
Cc: Terry Zhou <bjzhou@marvell.com>
Cc: Hanna Hawa <hannah@marvell.com>
Cc: Haim Boot <hayim@marvell.com>
Cc: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/i2c/mv_i2c.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/i2c/mv_i2c.c b/drivers/i2c/mv_i2c.c index 0877c51..36482d5 100644 --- a/drivers/i2c/mv_i2c.c +++ b/drivers/i2c/mv_i2c.c @@ -20,7 +20,6 @@ #include <common.h> #include <asm/io.h> -#ifdef CONFIG_HARD_I2C #include <i2c.h> #include "mv_i2c.h" @@ -468,4 +467,3 @@ int i2c_write(uchar chip, uint addr, int alen, uchar *buffer, int len) return 0; } -#endif /* CONFIG_HARD_I2C */ |