summaryrefslogtreecommitdiff
path: root/src/arch/arm64/cpu-stubs.c
diff options
context:
space:
mode:
authorAaron Durbin <adurbin@chromium.org>2015-10-14 10:20:18 -0500
committerJulius Werner <jwerner@chromium.org>2015-11-07 03:28:29 +0100
commit0325a45fd03eb33818c7ac32208ea6568236ec14 (patch)
tree26832bec6d21313b926b5de25cfaa02a1f4026ab /src/arch/arm64/cpu-stubs.c
parent8c8e2b7e4c5f1e6a543ce67cf8b47e9feb1bac50 (diff)
downloadcoreboot-0325a45fd03eb33818c7ac32208ea6568236ec14.tar.xz
arm64: remove ARCH_ARM64_CORTEX_A57_POWER_DOWN_SUPPORT
With the removal of secmon from coreboot there are no power down operations required. As such remove the A57 power down support. Change-Id: I8eebb0ecd87b5e8bb3eaac335d652689d7f57796 Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/11898 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Furquan Shaikh <furquan@google.com> Tested-by: build bot (Jenkins) Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/arch/arm64/cpu-stubs.c')
-rw-r--r--src/arch/arm64/cpu-stubs.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/arch/arm64/cpu-stubs.c b/src/arch/arm64/cpu-stubs.c
index 119ff44499..1a61872986 100644
--- a/src/arch/arm64/cpu-stubs.c
+++ b/src/arch/arm64/cpu-stubs.c
@@ -14,14 +14,8 @@
*/
void arm64_cpu_early_setup(void);
-void cortex_a57_cpu_power_down(int l2_flush);
void __attribute__((weak)) arm64_cpu_early_setup(void)
{
/* Default empty implementation */
}
-
-void __attribute__((weak)) cortex_a57_cpu_power_down(int l2_flush)
-{
- /* Default empty implementation */
-}