mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-31 01:24:12 +02:00
Fix several build break in Ovmf package.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9292 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
b374d62a11
commit
7d9cf3f25e
@ -117,7 +117,7 @@ NvVarsFileReadCheckup (
|
|||||||
}
|
}
|
||||||
|
|
||||||
*Exists = TRUE;
|
*Exists = TRUE;
|
||||||
*Size = FileInfo->FileSize;
|
*Size = (UINTN) FileInfo->FileSize;
|
||||||
|
|
||||||
FreePool (FileInfo);
|
FreePool (FileInfo);
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/** @file
|
/** @file
|
||||||
Platform BDS customizations.
|
Platform BDS customizations.
|
||||||
|
|
||||||
Copyright (c) 2004 - 2008, Intel Corporation. <BR>
|
Copyright (c) 2004 - 2009, Intel Corporation. <BR>
|
||||||
All rights reserved. This program and the accompanying materials
|
All rights reserved. This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
@ -513,7 +513,7 @@ VisitingAPciInstance (
|
|||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (*(VISIT_PCI_INSTANCE_CALLBACK) Context) (
|
return (*(VISIT_PCI_INSTANCE_CALLBACK)(UINTN) Context) (
|
||||||
Handle,
|
Handle,
|
||||||
PciIo,
|
PciIo,
|
||||||
&Pci
|
&Pci
|
||||||
@ -531,7 +531,7 @@ VisitAllPciInstances (
|
|||||||
return VisitAllInstancesOfProtocol (
|
return VisitAllInstancesOfProtocol (
|
||||||
&gEfiPciIoProtocolGuid,
|
&gEfiPciIoProtocolGuid,
|
||||||
VisitingAPciInstance,
|
VisitingAPciInstance,
|
||||||
(VOID*) CallBackFunction
|
(VOID*)(UINTN) CallBackFunction
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user