diff options
author | Soby Mathew <soby.mathew@arm.com> | 2018-09-10 11:14:01 +0100 |
---|---|---|
committer | Soby Mathew <soby.mathew@arm.com> | 2018-09-10 11:51:31 +0100 |
commit | 66ec7121bdf993a4177c24f516a434b406e980e2 (patch) | |
tree | 2edf16572ae45a80d6eff04c373d2fc6d40005c6 /lib | |
parent | 438e78942dfb3d069b500201b8ac02c7986f459d (diff) | |
download | platform_external_arm-trusted-firmware-66ec7121bdf993a4177c24f516a434b406e980e2.tar.gz platform_external_arm-trusted-firmware-66ec7121bdf993a4177c24f516a434b406e980e2.tar.bz2 platform_external_arm-trusted-firmware-66ec7121bdf993a4177c24f516a434b406e980e2.zip |
Fix the Cortex-ares errata reporting function name
This patch fixes the name of the Cortex-ares errata function which was
previously named `cortex_a72_errata_report` which was an error.
Change-Id: Ia124df4628261021baa8d9a30308bc286d45712b
Signed-off-by: Soby Mathew <soby.mathew@arm.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/cpus/aarch64/cortex_ares.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/cpus/aarch64/cortex_ares.S b/lib/cpus/aarch64/cortex_ares.S index 942b6f705..2788174c8 100644 --- a/lib/cpus/aarch64/cortex_ares.S +++ b/lib/cpus/aarch64/cortex_ares.S @@ -95,7 +95,7 @@ endfunc cortex_ares_core_pwr_dwn /* * Errata printing function for Cortex-Ares. Must follow AAPCS. */ -func cortex_a72_errata_report +func cortex_ares_errata_report stp x8, x30, [sp, #-16]! bl cpu_get_rev_var @@ -109,7 +109,7 @@ func cortex_a72_errata_report ldp x8, x30, [sp], #16 ret -endfunc cortex_a72_errata_report +endfunc cortex_ares_errata_report #endif /* --------------------------------------------- |