diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-08-30 14:09:38 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-08-30 14:09:38 +0000 |
commit | 60c93673b3189b7a48acdb5c300f4ee3546ffb85 (patch) | |
tree | c335e23e592face4b3d6e5dcafffb8d51d64d246 /Nt32Pkg | |
parent | ed300ce2a68ba42b7e140af9e7e71c706518c9f1 (diff) | |
download | edk2-platforms-60c93673b3189b7a48acdb5c300f4ee3546ffb85.tar.xz |
The driver and library in MdePkg, MdeModulePkg and Nt32Pkg that don't depend on PI spec should include Uefi.h not PiDxe.h.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5758 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Nt32Pkg')
-rw-r--r-- | Nt32Pkg/MetronomeDxe/Metronome.h | 2 | ||||
-rw-r--r-- | Nt32Pkg/RealTimeClockRuntimeDxe/RealTimeClock.c | 2 | ||||
-rw-r--r-- | Nt32Pkg/ResetRuntimeDxe/reset.c | 2 | ||||
-rw-r--r-- | Nt32Pkg/SnpNt32Dxe/SnpNt32.h | 2 | ||||
-rw-r--r-- | Nt32Pkg/TimerDxe/Timer.h | 2 | ||||
-rw-r--r-- | Nt32Pkg/WinNtThunkDxe/WinNtThunk.c | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/Nt32Pkg/MetronomeDxe/Metronome.h b/Nt32Pkg/MetronomeDxe/Metronome.h index c2d4955d2e..22fa9abb5b 100644 --- a/Nt32Pkg/MetronomeDxe/Metronome.h +++ b/Nt32Pkg/MetronomeDxe/Metronome.h @@ -22,7 +22,7 @@ Abstract: #ifndef _NT_THUNK_METRONOME_H_
#define _NT_THUNK_METRONOME_H_
-#include <PiDxe.h>
+#include <Uefi.h>
#include <WinNtDxe.h>
#include <Protocol/Metronome.h>
#include <Library/BaseLib.h>
diff --git a/Nt32Pkg/RealTimeClockRuntimeDxe/RealTimeClock.c b/Nt32Pkg/RealTimeClockRuntimeDxe/RealTimeClock.c index 17e657c792..647acb1d4f 100644 --- a/Nt32Pkg/RealTimeClockRuntimeDxe/RealTimeClock.c +++ b/Nt32Pkg/RealTimeClockRuntimeDxe/RealTimeClock.c @@ -19,7 +19,7 @@ Abstract: **/
-#include <PiDxe.h>
+#include <Uefi.h>
#include <WinNtDxe.h>
#include <Protocol/RealTimeClock.h>
#include <Library/DebugLib.h>
diff --git a/Nt32Pkg/ResetRuntimeDxe/reset.c b/Nt32Pkg/ResetRuntimeDxe/reset.c index 0ee9a4e846..9a19b5664c 100644 --- a/Nt32Pkg/ResetRuntimeDxe/reset.c +++ b/Nt32Pkg/ResetRuntimeDxe/reset.c @@ -19,7 +19,7 @@ Abstract: **/
-#include <PiDxe.h>
+#include <Uefi.h>
#include <WinNtDxe.h>
#include <Protocol/Reset.h>
#include <Library/DebugLib.h>
diff --git a/Nt32Pkg/SnpNt32Dxe/SnpNt32.h b/Nt32Pkg/SnpNt32Dxe/SnpNt32.h index 7769bbf295..0c13562138 100644 --- a/Nt32Pkg/SnpNt32Dxe/SnpNt32.h +++ b/Nt32Pkg/SnpNt32Dxe/SnpNt32.h @@ -20,7 +20,7 @@ Abstract: #ifndef _SNP_NT32_H_
#define _SNP_NT32_H_
-#include <PiDxe.h>
+#include <Uefi.h>
#include <Protocol/SimpleNetwork.h>
#include <Protocol/DevicePath.h>
diff --git a/Nt32Pkg/TimerDxe/Timer.h b/Nt32Pkg/TimerDxe/Timer.h index fd680b1613..3b7312bd24 100644 --- a/Nt32Pkg/TimerDxe/Timer.h +++ b/Nt32Pkg/TimerDxe/Timer.h @@ -25,7 +25,7 @@ Abstract: #define _TIMER_H_
-#include <PiDxe.h>
+#include <Uefi.h>
#include <WinNtDxe.h>
#include <Protocol/Timer.h>
#include <Protocol/Cpu.h>
diff --git a/Nt32Pkg/WinNtThunkDxe/WinNtThunk.c b/Nt32Pkg/WinNtThunkDxe/WinNtThunk.c index c396f9db4d..1aa491a83a 100644 --- a/Nt32Pkg/WinNtThunkDxe/WinNtThunk.c +++ b/Nt32Pkg/WinNtThunkDxe/WinNtThunk.c @@ -29,7 +29,7 @@ Abstract: //
// The package level header files this module uses
//
-#include <PiDxe.h>
+#include <Uefi.h>
#include <WinNtDxe.h>
//
// The protocols, PPI and GUID defintions for this module
|