]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
board:universal: fix i2c adapter
authorPiotr Wilczek <p.wilczek@samsung.com>
Tue, 14 Jan 2014 07:15:07 +0000 (08:15 +0100)
committerTom Rini <trini@ti.com>
Mon, 20 Jan 2014 15:09:40 +0000 (10:09 -0500)
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>
board/samsung/universal_c210/universal.c

index 54d0e1e0e3b22721795ae77d6403a415dfca2bae..3feef3f7777381ed75b39fb7d01848c16c61cfa0 100644 (file)
@@ -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;