DebugDeviceLibNull.c 457 B

12345678910111213141516171819202122232425
  1. /** @file
  2. Debug device library instance that retrieves the current enabling state for
  3. the platform debug output device.
  4. Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
  5. SPDX-License-Identifier: BSD-2-Clause-Patent
  6. **/
  7. #include <Base.h>
  8. /**
  9. Returns the debug print device enable state.
  10. @return Debug print device enable state.
  11. **/
  12. UINT8
  13. EFIAPI
  14. GetDebugPrintDeviceEnable (
  15. VOID
  16. )
  17. {
  18. return 1;
  19. }