From af1a266670d040d2f4083ff309d732d648afba2a Mon Sep 17 00:00:00 2001 From: Angelos Mouzakitis Date: Tue, 10 Oct 2023 14:33:42 +0000 Subject: Add submodule dependency files Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec --- .../BaseDebugDeviceLibNull/DebugDeviceLibNull.c | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 roms/edk2/IntelFsp2Pkg/Library/BaseDebugDeviceLibNull/DebugDeviceLibNull.c (limited to 'roms/edk2/IntelFsp2Pkg/Library/BaseDebugDeviceLibNull/DebugDeviceLibNull.c') diff --git a/roms/edk2/IntelFsp2Pkg/Library/BaseDebugDeviceLibNull/DebugDeviceLibNull.c b/roms/edk2/IntelFsp2Pkg/Library/BaseDebugDeviceLibNull/DebugDeviceLibNull.c new file mode 100644 index 000000000..0bafca2fa --- /dev/null +++ b/roms/edk2/IntelFsp2Pkg/Library/BaseDebugDeviceLibNull/DebugDeviceLibNull.c @@ -0,0 +1,25 @@ +/** @file + Debug device library instance that retrieves the current enabling state for + the platform debug output device. + + Copyright (c) 2014, Intel Corporation. All rights reserved.
+ SPDX-License-Identifier: BSD-2-Clause-Patent + +**/ + +#include + +/** + Returns the debug print device enable state. + + @return Debug print device enable state. + +**/ +UINT8 +EFIAPI +GetDebugPrintDeviceEnable ( + VOID + ) +{ + return 1; +} -- cgit 1.2.3-korg