ICE_TEA_BIOS/Board/Oem/L05AlderLakeHXMultiBoardPkg/Library/PeiOemSvcFeatureLib/OemSvcSetCrisisLedState.c
LCFC\AiXia.Jiang a870bff2f4 1.Frist commit
2022-09-30 14:59:06 +08:00

34 lines
994 B
C

/** @file
Provides an opportunity for Crisis Led Behaivor
;******************************************************************************
;* Copyright (c) 2012 - 2015, Insyde Software Corp. All Rights Reserved.
;*
;* You may not reproduce, distribute, publish, display, perform, modify, adapt,
;* transmit, broadcast, present, recite, release, license or otherwise exploit
;* any part of this publication in any form, by any means, without the prior
;* written permission of Insyde Software Corporation.
;*
;******************************************************************************
*/
#include <Library/FeatureLib/OemSvcBIOSCrisis.h>
/**
This function offers an interface to Crisis Led state
@retval EFI_UNSUPPORTED Returns unsupported by default.
@retval EFI_MEDIA_CHANGED Modify Led State completed.
*/
EFI_STATUS
OemSvcSetCrisisLedState (
VOID
)
{
EFI_STATUS Status;
Status = EFI_UNSUPPORTED;
return Status;
}