aboutsummaryrefslogtreecommitdiff
path: root/src/vendorcode/amd/pi/00670F00/binaryPI/AGESA.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/vendorcode/amd/pi/00670F00/binaryPI/AGESA.c')
-rw-r--r--src/vendorcode/amd/pi/00670F00/binaryPI/AGESA.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/vendorcode/amd/pi/00670F00/binaryPI/AGESA.c b/src/vendorcode/amd/pi/00670F00/binaryPI/AGESA.c
index e17cedcb64..da89ce8e6d 100644
--- a/src/vendorcode/amd/pi/00670F00/binaryPI/AGESA.c
+++ b/src/vendorcode/amd/pi/00670F00/binaryPI/AGESA.c
@@ -45,30 +45,3 @@ CONST UINT32 ImageSignature = IMAGE_SIGNATURE;
CONST UINT32 ModuleSignature = MODULE_SIGNATURE;
CONST CHAR8 ModuleIdentifier[8] = AGESA_ID;
-/**********************************************************************
- * Interface call: AmdCreateStruct
- **********************************************************************/
-AGESA_STATUS
-AmdCreateStruct (
- IN OUT AMD_INTERFACE_PARAMS *InterfaceParams
- )
-{
- MODULE_ENTRY Dispatcher = agesa_get_dispatcher();
- InterfaceParams->StdHeader.Func = AMD_CREATE_STRUCT;
- if (!Dispatcher) return AGESA_UNSUPPORTED;
- return Dispatcher(InterfaceParams);
-}
-
-/**********************************************************************
- * Interface call: AmdReleaseStruct
- **********************************************************************/
-AGESA_STATUS
-AmdReleaseStruct (
- IN OUT AMD_INTERFACE_PARAMS *InterfaceParams
- )
-{
- MODULE_ENTRY Dispatcher = agesa_get_dispatcher();
- InterfaceParams->StdHeader.Func = AMD_RELEASE_STRUCT;
- if (!Dispatcher) return AGESA_UNSUPPORTED;
- return Dispatcher(InterfaceParams);
-}