diff options
| author | Tom Rini <trini@ti.com> | 2013-07-24 09:22:28 -0400 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-07-24 09:50:24 -0400 | 
| commit | c2120fbfbc4d1f6953228f86be8bdbf38bacfdab (patch) | |
| tree | 14cd8ec9a0a61f7113149be38d79808cd5e955f8 /common/cmd_dtt.c | |
| parent | e85427fd66a21b39145a47e67871a8863c0e5591 (diff) | |
| parent | ecbd7e1ec7280d90d151a99691f74b892588cadd (diff) | |
| download | olio-uboot-2014.01-c2120fbfbc4d1f6953228f86be8bdbf38bacfdab.tar.xz olio-uboot-2014.01-c2120fbfbc4d1f6953228f86be8bdbf38bacfdab.zip | |
Merge branch 'master' of git://git.denx.de/u-boot-i2c
The sandburst-specific i2c drivers have been deleted, conflict was just
over the SPDX conversion.
Conflicts:
	board/sandburst/common/ppc440gx_i2c.c
	board/sandburst/common/ppc440gx_i2c.h
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'common/cmd_dtt.c')
| -rw-r--r-- | common/cmd_dtt.c | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/common/cmd_dtt.c b/common/cmd_dtt.c index dc57744f8..7257f10fb 100644 --- a/common/cmd_dtt.c +++ b/common/cmd_dtt.c @@ -57,8 +57,13 @@ int dtt_i2c(void)  	/* Force a compilation error, if there are more then 32 sensors */  	BUILD_BUG_ON(sizeof(sensors) > 32);  	/* switch to correct I2C bus */ +#ifdef CONFIG_SYS_I2C +	old_bus = i2c_get_bus_num(); +	i2c_set_bus_num(CONFIG_SYS_DTT_BUS_NUM); +#else  	old_bus = I2C_GET_BUS();  	I2C_SET_BUS(CONFIG_SYS_DTT_BUS_NUM); +#endif  	_initialize_dtt(); @@ -70,8 +75,12 @@ int dtt_i2c(void)  		printf("DTT%d: %i C\n", i + 1, dtt_get_temp(sensors[i]));  	/* switch back to original I2C bus */ +#ifdef CONFIG_SYS_I2C +	i2c_set_bus_num(old_bus); +#else  	I2C_SET_BUS(old_bus);  #endif +#endif  	return 0;  } |