diff options
| author | Piotr Wilczek <p.wilczek@samsung.com> | 2014-01-14 08:15:07 +0100 |
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2014-01-20 10:09:40 -0500 |
| commit | c47817be257277f6445ea77bbf00954377ca9802 (patch) | |
| tree | 7ca63079abb9d045ba6d7cc6fb0b384e92a1fbfe | |
| parent | 0550870b1c590be6beb09b57762ec43b5516f7d1 (diff) | |
| download | olio-uboot-2014.01-c47817be257277f6445ea77bbf00954377ca9802.tar.xz olio-uboot-2014.01-c47817be257277f6445ea77bbf00954377ca9802.zip | |
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>
| -rw-r--r-- | board/samsung/universal_c210/universal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/samsung/universal_c210/universal.c b/board/samsung/universal_c210/universal.c index 54d0e1e0e..3feef3f77 100644 --- a/board/samsung/universal_c210/universal.c +++ b/board/samsung/universal_c210/universal.c @@ -49,7 +49,7 @@ int power_init_board(void) * For PMIC the I2C bus is named as I2C5, but it is connected * to logical I2C adapter 0 */ - ret = pmic_init(I2C_5); + ret = pmic_init(I2C_0); if (ret) return ret; |