diff options
author | Andrei Warkentin <andrei.warkentin@intel.com> | 2023-02-17 18:44:15 -0600 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2023-03-08 18:10:34 +0000 |
commit | 6ceaef4804c52f0190fe9c09ff89cb19affbd56f (patch) | |
tree | 9d6e06f566051d3d65eae85d3c624e72cb04ba48 | |
parent | 5bd2e5dfe6f8efa2cbbf643e4e7e46867a8a26b0 (diff) | |
download | edk2-6ceaef4804c52f0190fe9c09ff89cb19affbd56f.tar.gz |
MdePkg: BaseCpuLib: Fix RISCV CpuSleep symbol name.
CpuSleep, not _CpuSleep.
Cc: Daniel Schaefer <git@danielschaefer.me>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Zhiguang Liu <zhiguang.liu@intel.com>
Reviewed-by: Sunil V L <sunilvl@ventanamicro.com>
Signed-off-by: Andrei Warkentin <andrei.warkentin@intel.com>
-rw-r--r-- | MdePkg/Library/BaseCpuLib/RiscV/Cpu.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Library/BaseCpuLib/RiscV/Cpu.S b/MdePkg/Library/BaseCpuLib/RiscV/Cpu.S index 375b91d314..d6560087e0 100644 --- a/MdePkg/Library/BaseCpuLib/RiscV/Cpu.S +++ b/MdePkg/Library/BaseCpuLib/RiscV/Cpu.S @@ -10,9 +10,9 @@ .align 3
.section .text
-.global ASM_PFX(_CpuSleep)
+.global ASM_PFX(CpuSleep)
-ASM_PFX(_CpuSleep):
+ASM_PFX(CpuSleep):
wfi
ret
|