diff options
author | Marek Vasut <marek.vasut+renesas@gmail.com> | 2019-03-30 10:24:19 +0300 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2019-03-30 10:28:25 +0300 |
commit | 0c78ec64bcc96c34642ebd29614c4c26132ad4b6 (patch) | |
tree | d5bf11201c58e3f3494dd4afbe7fb952c11fd0be /board/renesas/alt | |
parent | e3b086cf0470efe66b7fb7cf658048b3efda9924 (diff) | |
download | u-boot-0c78ec64bcc96c34642ebd29614c4c26132ad4b6.tar.xz |
ARM: rmobile: alt: Fix I2C bus number
The I2C bus number to access the PMIC is I2C 7, fix this.
Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'board/renesas/alt')
-rw-r--r-- | board/renesas/alt/alt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/renesas/alt/alt.c b/board/renesas/alt/alt.c index 7b85000203..0726776a57 100644 --- a/board/renesas/alt/alt.c +++ b/board/renesas/alt/alt.c @@ -107,7 +107,7 @@ int board_phy_config(struct phy_device *phydev) void reset_cpu(ulong addr) { struct udevice *dev; - const u8 pmic_bus = 1; + const u8 pmic_bus = 7; const u8 pmic_addr = 0x58; u8 data; int ret; |