diff options
author | niruiyu <niruiyu@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-08-20 05:30:07 +0000 |
---|---|---|
committer | niruiyu <niruiyu@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-08-20 05:30:07 +0000 |
commit | f6aa9c1bb5201de511e9394397d8fc9315b106e2 (patch) | |
tree | 7df8d383ac2e0f39cb930d1f8fb192d8042d6497 /IntelFrameworkModulePkg | |
parent | 558be4559ac1fba1a81b483c90d00680a18640ff (diff) | |
download | edk2-platforms-f6aa9c1bb5201de511e9394397d8fc9315b106e2.tar.xz |
Fix GCC build failure
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10809 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkModulePkg')
-rw-r--r-- | IntelFrameworkModulePkg/Bus/Isa/IsaIoDxe/IsaDriver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/IntelFrameworkModulePkg/Bus/Isa/IsaIoDxe/IsaDriver.c b/IntelFrameworkModulePkg/Bus/Isa/IsaIoDxe/IsaDriver.c index a9252f0486..1b06bc5e6e 100644 --- a/IntelFrameworkModulePkg/Bus/Isa/IsaIoDxe/IsaDriver.c +++ b/IntelFrameworkModulePkg/Bus/Isa/IsaIoDxe/IsaDriver.c @@ -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;
-}
\ No newline at end of file +}
|