diff options
author | Tom Rini <trini@konsulko.com> | 2021-01-05 16:10:33 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-01-05 16:10:33 -0500 |
commit | c2d80bbde81fbe4e64c55e6053882655e6da2c9f (patch) | |
tree | f5080ec4912db4ab1249022bf6f20949fd8adb52 | |
parent | d8ab0fe5b5993fb8cecb5f018b7265bad0026e46 (diff) | |
parent | a8ef64e4ef6f5cabf083c8a8e5a181dceeea71ae (diff) |
Merge tag 'ti-v2021.01-rc5' of https://gitlab.denx.de/u-boot/custodians/u-boot-ti
- Fix I2C speed for Nokia RX51
-rw-r--r-- | board/nokia/rx51/rx51.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/nokia/rx51/rx51.c b/board/nokia/rx51/rx51.c index 3d62b5d9ad6..2dd41604c9b 100644 --- a/board/nokia/rx51/rx51.c +++ b/board/nokia/rx51/rx51.c @@ -704,9 +704,9 @@ void board_mmc_power_init(void) } static const struct omap_i2c_platdata rx51_i2c[] = { - { I2C_BASE1, 2200000, OMAP_I2C_REV_V1 }, + { I2C_BASE1, 100000, OMAP_I2C_REV_V1 }, { I2C_BASE2, 100000, OMAP_I2C_REV_V1 }, - { I2C_BASE3, 400000, OMAP_I2C_REV_V1 }, + { I2C_BASE3, 100000, OMAP_I2C_REV_V1 }, }; U_BOOT_DEVICES(rx51_i2c) = { |