diff options
author | Patrick Delaunay | 2018-04-16 10:15:07 +0200 |
---|---|---|
committer | Tom Rini | 2018-05-07 11:52:54 -0400 |
commit | 60599c1c088af23631bfd4085de37b25e29c9217 (patch) | |
tree | a47a539ec2db5badd9fc75583c5ef42bfb0bfed6 | |
parent | 41c79775f08ad5836ae875cd21ea7ed952fa1237 (diff) |
ls102xa: psci: save context id in cpu_on command
Replace the psci_save_target_pc call by the new function
psci_save(cpu, pc,context_id)
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
-rw-r--r-- | arch/arm/cpu/armv7/ls102xa/psci.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv7/ls102xa/psci.S b/arch/arm/cpu/armv7/ls102xa/psci.S index a36f05c577f..531cfb033bc 100644 --- a/arch/arm/cpu/armv7/ls102xa/psci.S +++ b/arch/arm/cpu/armv7/ls102xa/psci.S @@ -124,7 +124,8 @@ psci_cpu_on: mov r0, r4 mov r1, r2 - bl psci_save_target_pc + mov r2, r3 + bl psci_save mov r1, r4 @ Get DCFG base address |