From 5673300427d6ee1794b584ae315dd8dfd7bb0b6a Mon Sep 17 00:00:00 2001 From: qhuang8 Date: Thu, 27 Nov 2008 00:42:04 +0000 Subject: [PATCH] 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 --- MdePkg/Library/DxeRuntimePciExpressLib/PciExpressLib.c | 6 ++++-- 1 file 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; -- 2.39.2