diff options
author | Patrick Delaunay | 2018-04-16 10:15:08 +0200 |
---|---|---|
committer | Tom Rini | 2018-05-07 11:52:55 -0400 |
commit | 47ec6b4ea3b93225a7cb88ae1445fbc7c6a0a239 (patch) | |
tree | 5569c29a56c4074915cb3ab3213b5fa82d1f5bb0 | |
parent | 60599c1c088af23631bfd4085de37b25e29c9217 (diff) |
imx7: 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/mach-imx/mx7/psci.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/mx7/psci.S b/arch/arm/mach-imx/mx7/psci.S index c036dcb9349..89dcf880e89 100644 --- a/arch/arm/mach-imx/mx7/psci.S +++ b/arch/arm/mach-imx/mx7/psci.S @@ -23,7 +23,8 @@ psci_cpu_on: mov r5, r1 mov r0, r1 mov r1, r2 - bl psci_save_target_pc + mov r2, r3 + bl psci_save mov r0, r4 mov r1, r5 |