diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-27 04:37:39 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-27 04:37:39 +0000 |
commit | 9c83c97ac2fc79dcb97f14e708c9a9de6984846b (patch) | |
tree | 1f5af4374a54e45ad8e3548c826f6b346685fae1 /DuetPkg/IsaAcpiDxe/PcatIsaAcpi.c | |
parent | e24d48ac467af09fb112e6ae405c4f47e3c5d024 (diff) | |
download | edk2-platforms-9c83c97ac2fc79dcb97f14e708c9a9de6984846b.tar.xz |
Fix ICC building issue for DuetPkg
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6749 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'DuetPkg/IsaAcpiDxe/PcatIsaAcpi.c')
-rw-r--r-- | DuetPkg/IsaAcpiDxe/PcatIsaAcpi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/DuetPkg/IsaAcpiDxe/PcatIsaAcpi.c b/DuetPkg/IsaAcpiDxe/PcatIsaAcpi.c index 674c6dfc00..a0f4cdfd40 100644 --- a/DuetPkg/IsaAcpiDxe/PcatIsaAcpi.c +++ b/DuetPkg/IsaAcpiDxe/PcatIsaAcpi.c @@ -92,7 +92,7 @@ Returns: Status = gBS->OpenProtocol (
Controller,
&gEfiPciIoProtocolGuid,
- &PciIo,
+ (VOID**)&PciIo,
This->DriverBindingHandle,
Controller,
EFI_OPEN_PROTOCOL_BY_DRIVER
@@ -171,7 +171,7 @@ Returns: Status = gBS->OpenProtocol (
Controller,
&gEfiPciIoProtocolGuid,
- &PciIo,
+ (VOID**)&PciIo,
This->DriverBindingHandle,
Controller,
EFI_OPEN_PROTOCOL_BY_DRIVER
@@ -197,7 +197,7 @@ Returns: Status = gBS->AllocatePool (
EfiBootServicesData,
sizeof(PCAT_ISA_ACPI_DEV),
- &PcatIsaAcpiDev
+ (VOID**)&PcatIsaAcpiDev
);
if (EFI_ERROR (Status)) {
goto Done;
@@ -284,7 +284,7 @@ PcatIsaAcpiDriverBindingStop ( Status = gBS->OpenProtocol (
Controller,
&gEfiIsaAcpiProtocolGuid,
- &IsaAcpi,
+ (VOID**)&IsaAcpi,
This->DriverBindingHandle,
Controller,
EFI_OPEN_PROTOCOL_GET_PROTOCOL
|