mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-20 22:21:41 +00:00
board:universal: fix i2c adapter
Universal uses only one adapter I2C_0. Signed-off-by: Piotr Wilczek <p.wilczek@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Acked-by: Przemyslaw Marczak <p.marczak@samsung.com>
This commit is contained in:
parent
0550870b1c
commit
c47817be25
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ int power_init_board(void)
|
||||||
* For PMIC the I2C bus is named as I2C5, but it is connected
|
* For PMIC the I2C bus is named as I2C5, but it is connected
|
||||||
* to logical I2C adapter 0
|
* to logical I2C adapter 0
|
||||||
*/
|
*/
|
||||||
ret = pmic_init(I2C_5);
|
ret = pmic_init(I2C_0);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue