/** @file
|
Platform CMOS Access Library.
|
|
Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
**/
|
|
#include <Base.h>
|
#include <Library/PlatformCmosAccessLib.h>
|
|
/**
|
Return the platform CMOS entries.
|
|
@param [out] EntryCount Return the count of platform CMOS entries.
|
|
@return Platform CMOS entries.
|
**/
|
CMOS_ENTRY *
|
EFIAPI
|
PlatformCmosGetEntry (
|
OUT UINTN *EntryCount
|
)
|
{
|
*EntryCount = 0;
|
return NULL;
|
}
|
|
/**
|
Return the NMI enable status.
|
**/
|
BOOLEAN
|
EFIAPI
|
PlatformCmosGetNmiState (
|
VOID
|
)
|
{
|
return FALSE;
|
}
|