diff options
Diffstat (limited to 'board/samsung/common/multi_i2c.c')
| -rw-r--r-- | board/samsung/common/multi_i2c.c | 14 | 
1 files changed, 6 insertions, 8 deletions
| diff --git a/board/samsung/common/multi_i2c.c b/board/samsung/common/multi_i2c.c index 4fce98754..084858def 100644 --- a/board/samsung/common/multi_i2c.c +++ b/board/samsung/common/multi_i2c.c @@ -11,13 +11,12 @@  /* Handle multiple I2C buses instances */  int get_multi_scl_pin(void)  { -	unsigned int bus = I2C_GET_BUS(); +	unsigned int bus = i2c_get_bus_num();  	switch (bus) { -	case I2C_0: /* I2C_0 definition - compatibility layer */ -	case I2C_5: +	case I2C_0:  		return CONFIG_SOFT_I2C_I2C5_SCL; -	case I2C_9: +	case I2C_1:  		return CONFIG_SOFT_I2C_I2C9_SCL;  	default:  		printf("I2C_%d not supported!\n", bus); @@ -28,13 +27,12 @@ int get_multi_scl_pin(void)  int get_multi_sda_pin(void)  { -	unsigned int bus = I2C_GET_BUS(); +	unsigned int bus = i2c_get_bus_num();  	switch (bus) { -	case I2C_0: /* I2C_0 definition - compatibility layer */ -	case I2C_5: +	case I2C_0:  		return CONFIG_SOFT_I2C_I2C5_SDA; -	case I2C_9: +	case I2C_1:  		return CONFIG_SOFT_I2C_I2C9_SDA;  	default:  		printf("I2C_%d not supported!\n", bus); |