REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the OvmfPkg package Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Andrew Fish <afish@apple.com>
		
			
				
	
	
		
			35 lines
		
	
	
		
			769 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			769 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /** @file
 | |
|   Detection code for QEMU debug port.
 | |
| 
 | |
|   Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
 | |
|   Copyright (c) 2012, Red Hat, Inc.<BR>
 | |
|   Copyright (c) 2020, Citrix Systems, Inc.
 | |
|   SPDX-License-Identifier: BSD-2-Clause-Patent
 | |
| 
 | |
| **/
 | |
| 
 | |
| #include <Library/IoLib.h>
 | |
| #include <Library/PcdLib.h>
 | |
| #include "DebugLibDetect.h"
 | |
| 
 | |
| //
 | |
| // The constant value that is read from the debug I/O port
 | |
| //
 | |
| #define BOCHS_DEBUG_PORT_MAGIC  0xE9
 | |
| 
 | |
| /**
 | |
|   Return the result of detecting the debug I/O port device.
 | |
| 
 | |
|   @retval TRUE   if the debug I/O port device was detected.
 | |
|   @retval FALSE  otherwise
 | |
| 
 | |
| **/
 | |
| BOOLEAN
 | |
| EFIAPI
 | |
| PlatformDebugLibIoPortDetect (
 | |
|   VOID
 | |
|   )
 | |
| {
 | |
|   return IoRead8 (PcdGet16 (PcdDebugIoPort)) == BOCHS_DEBUG_PORT_MAGIC;
 | |
| }
 |