mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
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>
This commit is contained in:
parent
e3b086cf04
commit
0c78ec64bc
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue