diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-27 00:42:04 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-27 00:42:04 +0000 |
commit | 5673300427d6ee1794b584ae315dd8dfd7bb0b6a (patch) | |
tree | 2fa4b944452f8d4334a111882183ce40f6090f39 /MdePkg/Library/DxeRuntimePciExpressLib | |
parent | e188a609341e9cdb5e6de6bf80b870e42b8a4ddc (diff) | |
download | edk2-5673300427d6ee1794b584ae315dd8dfd7bb0b6a.tar.gz edk2-5673300427d6ee1794b584ae315dd8dfd7bb0b6a.tar.bz2 edk2-5673300427d6ee1794b584ae315dd8dfd7bb0b6a.zip |
Fix constructor/destructor issue for DXE_RUNTIM_DRIVER library instance.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6741 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/DxeRuntimePciExpressLib')
-rw-r--r-- | MdePkg/Library/DxeRuntimePciExpressLib/PciExpressLib.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/MdePkg/Library/DxeRuntimePciExpressLib/PciExpressLib.c b/MdePkg/Library/DxeRuntimePciExpressLib/PciExpressLib.c index 95ffc79286..40049aa4c7 100644 --- a/MdePkg/Library/DxeRuntimePciExpressLib/PciExpressLib.c +++ b/MdePkg/Library/DxeRuntimePciExpressLib/PciExpressLib.c @@ -114,7 +114,8 @@ DxeRuntimePciExpressLibVirtualNotify ( EFI_STATUS
EFIAPI
DxeRuntimePciExpressLibConstructor (
- VOID
+ IN EFI_HANDLE ImageHandle,
+ IN EFI_SYSTEM_TABLE *SystemTable
)
{
EFI_STATUS Status;
@@ -153,7 +154,8 @@ DxeRuntimePciExpressLibConstructor ( EFI_STATUS
EFIAPI
DxeRuntimePciExpressLibDestructor (
- VOID
+ IN EFI_HANDLE ImageHandle,
+ IN EFI_SYSTEM_TABLE *SystemTable
)
{
EFI_STATUS Status;
|