mirror of https://github.com/acidanthera/audk.git
BaseTools/GenFvInternalLib: Remove unused BaseOfCode parameter
This commit is contained in:
parent
3f66dcc702
commit
b9aa08eb24
|
@ -1517,7 +1517,6 @@ Returns:
|
||||||
EFI_STATUS Status;
|
EFI_STATUS Status;
|
||||||
EFI_FILE_SECTION_POINTER Pe32Section;
|
EFI_FILE_SECTION_POINTER Pe32Section;
|
||||||
UINT32 EntryPoint;
|
UINT32 EntryPoint;
|
||||||
UINT32 BaseOfCode;
|
|
||||||
UINT16 MachineType;
|
UINT16 MachineType;
|
||||||
EFI_PHYSICAL_ADDRESS PeiCorePhysicalAddress;
|
EFI_PHYSICAL_ADDRESS PeiCorePhysicalAddress;
|
||||||
EFI_PHYSICAL_ADDRESS SecCorePhysicalAddress;
|
EFI_PHYSICAL_ADDRESS SecCorePhysicalAddress;
|
||||||
|
@ -1593,7 +1592,6 @@ Returns:
|
||||||
Status = GetPe32Info (
|
Status = GetPe32Info (
|
||||||
(VOID *) ((UINTN) Pe32Section.Pe32Section + SecHeaderSize),
|
(VOID *) ((UINTN) Pe32Section.Pe32Section + SecHeaderSize),
|
||||||
&EntryPoint,
|
&EntryPoint,
|
||||||
&BaseOfCode,
|
|
||||||
&MachineType
|
&MachineType
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1646,7 +1644,6 @@ Returns:
|
||||||
Status = GetPe32Info (
|
Status = GetPe32Info (
|
||||||
(VOID *) ((UINTN) Pe32Section.Pe32Section + SecHeaderSize),
|
(VOID *) ((UINTN) Pe32Section.Pe32Section + SecHeaderSize),
|
||||||
&EntryPoint,
|
&EntryPoint,
|
||||||
&BaseOfCode,
|
|
||||||
&MachineType
|
&MachineType
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1888,7 +1885,6 @@ Returns:
|
||||||
{
|
{
|
||||||
EFI_STATUS Status;
|
EFI_STATUS Status;
|
||||||
UINT32 EntryPoint;
|
UINT32 EntryPoint;
|
||||||
UINT32 BaseOfCode;
|
|
||||||
|
|
||||||
if (CoreMachineType == NULL) {
|
if (CoreMachineType == NULL) {
|
||||||
return EFI_INVALID_PARAMETER;
|
return EFI_INVALID_PARAMETER;
|
||||||
|
@ -1897,7 +1893,6 @@ Returns:
|
||||||
Status = GetPe32Info(
|
Status = GetPe32Info(
|
||||||
(VOID *)((UINTN)Pe32Section.Pe32Section + GetSectionHeaderLength(Pe32Section.CommonHeader)),
|
(VOID *)((UINTN)Pe32Section.Pe32Section + GetSectionHeaderLength(Pe32Section.CommonHeader)),
|
||||||
&EntryPoint,
|
&EntryPoint,
|
||||||
&BaseOfCode,
|
|
||||||
CoreMachineType
|
CoreMachineType
|
||||||
);
|
);
|
||||||
if (EFI_ERROR(Status)) {
|
if (EFI_ERROR(Status)) {
|
||||||
|
@ -1938,7 +1933,6 @@ Returns:
|
||||||
{
|
{
|
||||||
EFI_STATUS Status;
|
EFI_STATUS Status;
|
||||||
UINT32 EntryPoint;
|
UINT32 EntryPoint;
|
||||||
UINT32 BaseOfCode;
|
|
||||||
UINT16 MachineType;
|
UINT16 MachineType;
|
||||||
EFI_PHYSICAL_ADDRESS EntryPhysicalAddress;
|
EFI_PHYSICAL_ADDRESS EntryPhysicalAddress;
|
||||||
|
|
||||||
|
@ -1949,7 +1943,6 @@ Returns:
|
||||||
Status = GetPe32Info(
|
Status = GetPe32Info(
|
||||||
(VOID *)((UINTN)Pe32Section.Pe32Section + GetSectionHeaderLength(Pe32Section.CommonHeader)),
|
(VOID *)((UINTN)Pe32Section.Pe32Section + GetSectionHeaderLength(Pe32Section.CommonHeader)),
|
||||||
&EntryPoint,
|
&EntryPoint,
|
||||||
&BaseOfCode,
|
|
||||||
&MachineType
|
&MachineType
|
||||||
);
|
);
|
||||||
if (EFI_ERROR(Status)) {
|
if (EFI_ERROR(Status)) {
|
||||||
|
@ -2398,7 +2391,6 @@ EFI_STATUS
|
||||||
GetPe32Info (
|
GetPe32Info (
|
||||||
IN UINT8 *Pe32,
|
IN UINT8 *Pe32,
|
||||||
OUT UINT32 *EntryPoint,
|
OUT UINT32 *EntryPoint,
|
||||||
OUT UINT32 *BaseOfCode,
|
|
||||||
OUT UINT16 *MachineType
|
OUT UINT16 *MachineType
|
||||||
)
|
)
|
||||||
/*++
|
/*++
|
||||||
|
@ -2413,7 +2405,6 @@ Arguments:
|
||||||
|
|
||||||
Pe32 Beginning of the PE32.
|
Pe32 Beginning of the PE32.
|
||||||
EntryPoint Offset from the beginning of the PE32 to the image entry point.
|
EntryPoint Offset from the beginning of the PE32 to the image entry point.
|
||||||
BaseOfCode Base address of code.
|
|
||||||
MachineType Magic number for the machine type.
|
MachineType Magic number for the machine type.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
|
@ -2445,7 +2436,6 @@ Returns:
|
||||||
// By TeImage Header to get output
|
// By TeImage Header to get output
|
||||||
//
|
//
|
||||||
*EntryPoint = TeHeader->AddressOfEntryPoint + sizeof (EFI_TE_IMAGE_HEADER) - TeHeader->StrippedSize;
|
*EntryPoint = TeHeader->AddressOfEntryPoint + sizeof (EFI_TE_IMAGE_HEADER) - TeHeader->StrippedSize;
|
||||||
*BaseOfCode = TeHeader->BaseOfCode + sizeof (EFI_TE_IMAGE_HEADER) - TeHeader->StrippedSize;
|
|
||||||
*MachineType = TeHeader->Machine;
|
*MachineType = TeHeader->Machine;
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
@ -2478,7 +2468,6 @@ Returns:
|
||||||
// Get output
|
// Get output
|
||||||
//
|
//
|
||||||
*EntryPoint = ImgHdr->Pe32.OptionalHeader.AddressOfEntryPoint;
|
*EntryPoint = ImgHdr->Pe32.OptionalHeader.AddressOfEntryPoint;
|
||||||
*BaseOfCode = ImgHdr->Pe32.OptionalHeader.BaseOfCode;
|
|
||||||
*MachineType = ImgHdr->Pe32.FileHeader.Machine;
|
*MachineType = ImgHdr->Pe32.FileHeader.Machine;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -307,7 +307,6 @@ EFI_STATUS
|
||||||
GetPe32Info (
|
GetPe32Info (
|
||||||
IN UINT8 *Pe32,
|
IN UINT8 *Pe32,
|
||||||
OUT UINT32 *EntryPoint,
|
OUT UINT32 *EntryPoint,
|
||||||
OUT UINT32 *BaseOfCode,
|
|
||||||
OUT UINT16 *MachineType
|
OUT UINT16 *MachineType
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue