diff options
author | danh-arm <dan.handley@arm.com> | 2016-12-12 14:29:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-12 14:29:01 +0000 |
commit | 1b5fa6ef1082ffb9979df4aad91525eda571eb50 (patch) | |
tree | 082595c467672752cadc9228f43ef1c78f369e4e /lib/psci/aarch32 | |
parent | 919ad05ecb8fab23f91a37783dc5f246847c7bd2 (diff) | |
parent | a806dad58c4cf752238d7bbffbc9a1ce17f63cea (diff) | |
download | platform_external_arm-trusted-firmware-1b5fa6ef1082ffb9979df4aad91525eda571eb50.tar.gz platform_external_arm-trusted-firmware-1b5fa6ef1082ffb9979df4aad91525eda571eb50.tar.bz2 platform_external_arm-trusted-firmware-1b5fa6ef1082ffb9979df4aad91525eda571eb50.zip |
Merge pull request #774 from jeenu-arm/no-return-macro
Define and use no_ret macro where no return is expected
Diffstat (limited to 'lib/psci/aarch32')
-rw-r--r-- | lib/psci/aarch32/psci_helpers.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/psci/aarch32/psci_helpers.S b/lib/psci/aarch32/psci_helpers.S index 36d5d7d9b..27d651e3d 100644 --- a/lib/psci/aarch32/psci_helpers.S +++ b/lib/psci/aarch32/psci_helpers.S @@ -176,5 +176,5 @@ endfunc do_stack_maintenance func psci_power_down_wfi dsb sy // ensure write buffer empty wfi - bl plat_panic_handler + no_ret plat_panic_handler endfunc psci_power_down_wfi |