diff options
author | Anthony PERARD <anthony.perard@citrix.com> | 2019-08-13 12:30:45 +0100 |
---|---|---|
committer | Laszlo Ersek <lersek@redhat.com> | 2019-08-21 18:03:48 +0200 |
commit | aaebea27dab640b34e7383b75ee8182f652275ea (patch) | |
tree | 2ee2296f535af05c01e71bab7adf54b44851d0d7 | |
parent | 30781febe2106cc0d7186e70136120353cd67df2 (diff) | |
download | edk2-aaebea27dab640b34e7383b75ee8182f652275ea.zip edk2-aaebea27dab640b34e7383b75ee8182f652275ea.tar.gz edk2-aaebea27dab640b34e7383b75ee8182f652275ea.tar.bz2 |
OvmfPkg/ResetSystemLib: Add missing dependency on PciLib
Add missing dependency on PciLib
and remove extra includes of OvmfPlatforms.h.
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Message-Id: <20190813113119.14804-2-anthony.perard@citrix.com>
-rw-r--r-- | OvmfPkg/Library/ResetSystemLib/ResetSystemLib.c | 3 | ||||
-rw-r--r-- | OvmfPkg/Library/ResetSystemLib/ResetSystemLib.inf | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OvmfPkg/Library/ResetSystemLib/ResetSystemLib.c b/OvmfPkg/Library/ResetSystemLib/ResetSystemLib.c index 27460cd..98dd80e 100644 --- a/OvmfPkg/Library/ResetSystemLib/ResetSystemLib.c +++ b/OvmfPkg/Library/ResetSystemLib/ResetSystemLib.c @@ -11,11 +11,10 @@ #include <Library/BaseLib.h>
#include <Library/DebugLib.h>
#include <Library/IoLib.h>
+#include <Library/PciLib.h>
#include <Library/TimerLib.h>
#include <OvmfPlatforms.h>
-#include <OvmfPlatforms.h>
-
VOID
AcpiPmControl (
UINTN SuspendType
diff --git a/OvmfPkg/Library/ResetSystemLib/ResetSystemLib.inf b/OvmfPkg/Library/ResetSystemLib/ResetSystemLib.inf index 7c44f99..2f24dac 100644 --- a/OvmfPkg/Library/ResetSystemLib/ResetSystemLib.inf +++ b/OvmfPkg/Library/ResetSystemLib/ResetSystemLib.inf @@ -30,4 +30,5 @@ [LibraryClasses]
DebugLib
IoLib
+ PciLib
TimerLib
|