Files
system76-edk2/UefiPayloadPkg/Library/System76EcLibNull/System76EcLibNull.c
Tim Crawford 4984cdcb36 UefiPayloadPkg: Add library for logging to EC
Make use of the SMFI command interface to forward logs from edk2 to
System76 EC.
2020-04-17 10:45:17 -06:00

19 lines
248 B
C

/** @file
System76 EC logging
Copyright (c) 2020 System76, Inc.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <Library/System76EcLib.h>
INTN
System76EcWrite (
IN UINT8 *Buffer,
IN UINTN NumberOfBytes
)
{
return 0;
}