mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 23:51:33 +00:00
ARM: rmobile: Fix PMIC address on E2 Silk
The PMIC is at 0x5a, fix the address. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
This commit is contained in:
parent
bb6d2ff2ac
commit
fe537802f1
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ void reset_cpu(ulong addr)
|
|||
{
|
||||
struct udevice *dev;
|
||||
const u8 pmic_bus = 1;
|
||||
const u8 pmic_addr = 0x58;
|
||||
const u8 pmic_addr = 0x5a;
|
||||
u8 data;
|
||||
int ret;
|
||||
|
||||
|
|
Loading…
Reference in a new issue