Follow up tracker EDKT285.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1826 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
yshang1
2006-10-23 06:10:44 +00:00
parent 3fc556d665
commit f81f558de8
4 changed files with 7 additions and 7 deletions

View File

@ -130,7 +130,7 @@ Returns:
EfiConvertPointer ( EfiConvertPointer (
EFI_OPTIONAL_POINTER, EFI_OPTIONAL_POINTER,
(void **) &Pxe31Pointer (VOID **) &Pxe31Pointer
); );
// //
@ -140,13 +140,13 @@ Returns:
UNDI32DeviceList[Index]->NIIProtocol_31.ID = (UINT64) (UINTN) Pxe31Pointer; UNDI32DeviceList[Index]->NIIProtocol_31.ID = (UINT64) (UINTN) Pxe31Pointer;
EfiConvertPointer ( EfiConvertPointer (
EFI_OPTIONAL_POINTER, EFI_OPTIONAL_POINTER,
(void **) &(UNDI32DeviceList[Index]) (VOID **) &(UNDI32DeviceList[Index])
); );
} }
EfiConvertPointer ( EfiConvertPointer (
EFI_OPTIONAL_POINTER, EFI_OPTIONAL_POINTER,
(void **) &(pxe_31->EntryPoint) (VOID **) &(pxe_31->EntryPoint)
); );
pxe_31 = Pxe31Pointer; pxe_31 = Pxe31Pointer;
} }
@ -154,7 +154,7 @@ Returns:
for (Index = 0; Index <= PXE_OPCODE_LAST_VALID; Index++) { for (Index = 0; Index <= PXE_OPCODE_LAST_VALID; Index++) {
EfiConvertPointer ( EfiConvertPointer (
EFI_OPTIONAL_POINTER, EFI_OPTIONAL_POINTER,
(void **) &api_table[Index].api_ptr (VOID **) &api_table[Index].api_ptr
); );
} }
} }

View File

@ -291,7 +291,7 @@ EFI_STATUS
EFIAPI EFIAPI
EfiConvertPointer ( EfiConvertPointer (
IN UINTN DebugDisposition, IN UINTN DebugDisposition,
IN OUT VOID *Address IN OUT VOID **Address
) )
/*++ /*++

View File

@ -367,7 +367,7 @@ EFI_STATUS
EFIAPI EFIAPI
EfiConvertPointer ( EfiConvertPointer (
IN UINTN DebugDisposition, IN UINTN DebugDisposition,
IN OUT VOID *Address IN OUT VOID **Address
) )
/*++ /*++

View File

@ -249,7 +249,7 @@ EFI_STATUS
EFIAPI EFIAPI
EfiConvertPointer ( EfiConvertPointer (
IN UINTN DebugDisposition, IN UINTN DebugDisposition,
IN OUT VOID *Address IN OUT VOID **Address
); );