]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/Library/PlatformDebugLibIoPort/DebugIoPortNocheck.c
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / OvmfPkg / Library / PlatformDebugLibIoPort / DebugIoPortNocheck.c
1 /** @file
2 Dectection code for hypervisor debug port.
3
4 Copyright (c) 2020, Citrix Systems, Inc.
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8
9 #include "DebugLibDetect.h"
10
11 /**
12 Always return TRUE without detection as the debug I/O port is always
13 present.
14
15 @retval TRUE The debug I/O port is always present.
16
17 **/
18 BOOLEAN
19 EFIAPI
20 PlatformDebugLibIoPortDetect (
21 VOID
22 )
23 {
24 return TRUE;
25 }