]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFspPkg/Library/BaseDebugDeviceLibNull/DebugDeviceLibNull.c
0bafca2fa354a84dfda849f139cdbbc8ab7adbc8
[mirror_edk2.git] / IntelFspPkg / Library / BaseDebugDeviceLibNull / DebugDeviceLibNull.c
1 /** @file
2 Debug device library instance that retrieves the current enabling state for
3 the platform debug output device.
4
5 Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #include <Base.h>
11
12 /**
13 Returns the debug print device enable state.
14
15 @return Debug print device enable state.
16
17 **/
18 UINT8
19 EFIAPI
20 GetDebugPrintDeviceEnable (
21 VOID
22 )
23 {
24 return 1;
25 }