38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
/** @file
|
|
Provide hook function for OEM to implement EC wait.
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2013, Insyde Software Corporation. 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/BaseOemSvcKernelLib.h>
|
|
|
|
/**
|
|
Platform specific function to enable/disable flash
|
|
|
|
@param[in] EnableEcWait Boolean to enable/disable flash.
|
|
|
|
@retval EFI_UNSUPPORTED Returns unsupported by default.
|
|
@retval EFI_SUCCESS The service is customized in the project.
|
|
@retval EFI_MEDIA_CHANGED The value of IN OUT parameter is changed.
|
|
**/
|
|
EFI_STATUS
|
|
OemSvcEcWait (
|
|
IN BOOLEAN EnableEcWait
|
|
)
|
|
{
|
|
/*++
|
|
Todo:
|
|
Add project specific code in here.
|
|
--*/
|
|
|
|
return EFI_UNSUPPORTED;
|
|
}
|