38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
/** @file
|
|
Provides an interface for modify Second Mac Address
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2019, 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 <Uefi.h>
|
|
|
|
/**
|
|
Provides an interface for modify Second Mac Address
|
|
|
|
@param ModifyMacAddrVarData An allocated point for updating Second Mac Address
|
|
|
|
@retval EFI_UNSUPPORTED Returns unsupported by default. The return status will not be referenced.
|
|
**/
|
|
EFI_STATUS
|
|
OemSvcUpdateSecondMacAddress (
|
|
IN OUT EFI_MAC_ADDRESS *ModifyMacAddrVarData
|
|
)
|
|
{
|
|
/*++
|
|
Todo:
|
|
Add project specific code in here.
|
|
|
|
--*/
|
|
|
|
return EFI_UNSUPPORTED;
|
|
}
|
|
|