summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authortrem <tremyfr@yahoo.fr>2013-09-21 18:13:34 +0200
committerHeiko Schocher <hs@denx.de>2013-10-17 07:20:24 +0200
commit815a76f2ef08b700da611645c9329f632b681491 (patch)
tree0f2c46005a79399d10e242e37c0867bffae903ae /common
parent183acb700378a8cfc5d50a01a65de93fb2c24586 (diff)
downloadtalos-obmc-uboot-815a76f2ef08b700da611645c9329f632b681491.tar.gz
talos-obmc-uboot-815a76f2ef08b700da611645c9329f632b681491.zip
i2c: fix init on generic board
On generic board, the i2c init initialize only one bus. But the new i2c subsystem allow to manage severals i2c bus. So in the case, instead of initializing a bus, we just set the current i2c bus. The initialization will be done in the i2c command. Signed-off-by: Philippe Reynes <tremyfr@yahoo.fr>
Diffstat (limited to 'common')
-rw-r--r--common/board_f.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/board_f.c b/common/board_f.c
index 0ada1afe16..f0664bc2b2 100644
--- a/common/board_f.c
+++ b/common/board_f.c
@@ -249,7 +249,11 @@ void dram_init_banksize(void)
static int init_func_i2c(void)
{
puts("I2C: ");
+#ifdef CONFIG_SYS_I2C
+ i2c_init_all();
+#else
i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
+#endif
puts("ready\n");
return 0;
}
OpenPOWER on IntegriCloud