aboutsummaryrefslogtreecommitdiff
path: root/core/arch/arm/sm/psci-helper.S
diff options
context:
space:
mode:
Diffstat (limited to 'core/arch/arm/sm/psci-helper.S')
-rw-r--r--core/arch/arm/sm/psci-helper.S6
1 files changed, 0 insertions, 6 deletions
diff --git a/core/arch/arm/sm/psci-helper.S b/core/arch/arm/sm/psci-helper.S
index 54a52673..feaca88e 100644
--- a/core/arch/arm/sm/psci-helper.S
+++ b/core/arch/arm/sm/psci-helper.S
@@ -9,27 +9,22 @@
#include <kernel/cache_helpers.h>
FUNC psci_disable_smp, :
-UNWIND( .fnstart)
read_actlr r0
bic r0, r0, #ACTLR_SMP
write_actlr r0
isb
bx lr
-UNWIND( .fnend)
END_FUNC psci_disable_smp
FUNC psci_enable_smp, :
-UNWIND( .fnstart)
read_actlr r0
orr r0, r0, #ACTLR_SMP
write_actlr r0
isb
bx lr
-UNWIND( .fnend)
END_FUNC psci_enable_smp
FUNC psci_armv7_cpu_off, :
-UNWIND( .fnstart)
push {r12, lr}
UNWIND( .save {r12, lr})
@@ -51,5 +46,4 @@ UNWIND( .save {r12, lr})
bl psci_disable_smp
pop {r12, pc}
-UNWIND( .fnend)
END_FUNC psci_armv7_cpu_off