mirror of https://github.com/acidanthera/audk.git
Fix GCC build failure
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10809 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
558be4559a
commit
f6aa9c1bb5
|
@ -215,7 +215,7 @@ IsaIoDriverStart (
|
|||
((DevicePathSubType (AcpiNode) == ACPI_DP) || (DevicePathSubType (AcpiNode) == ACPI_EXTENDED_DP))
|
||||
);
|
||||
|
||||
Status = gBS->HandleProtocol (PciHandle, &gEfiPciIoProtocolGuid, &PciIo);
|
||||
Status = gBS->HandleProtocol (PciHandle, &gEfiPciIoProtocolGuid, (VOID **) &PciIo);
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
|
||||
//
|
||||
|
@ -336,4 +336,4 @@ IsaIoDriverStop (
|
|||
}
|
||||
|
||||
return Status;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue