mirror of
https://github.com/acidanthera/audk.git
synced 2025-08-14 14:18:09 +02:00
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>
20 lines
447 B
ArmAsm
20 lines
447 B
ArmAsm
//------------------------------------------------------------------------------
|
|
//
|
|
// CpuSleep for RISC-V
|
|
//
|
|
// Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>
|
|
// SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
.data
|
|
.align 3
|
|
.section .text
|
|
|
|
.global ASM_PFX(CpuSleep)
|
|
|
|
ASM_PFX(CpuSleep):
|
|
wfi
|
|
ret
|
|
|
|
|