diff options
author | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-07-11 23:28:37 +0000 |
---|---|---|
committer | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-07-11 23:28:37 +0000 |
commit | 7075f412272c6f940be4c321bfea60fcc794d356 (patch) | |
tree | 58cd4ff650232514c719ff3631caf645fa9a564c /Nt32Pkg | |
parent | 79bc7a89f7da2c5c17332a55e514dd69e849ce87 (diff) | |
download | edk2-platforms-7075f412272c6f940be4c321bfea60fcc794d356.tar.xz |
Remove extra #includes where possible to make build more efficient
If module really is a Framework module and not a PI module, then use FrameworkDxe.h instead of PeDxe.h and FrameworkPei.h instead of PiPei.h
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8901 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Nt32Pkg')
-rw-r--r-- | Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/Nt32OemHookStatusCodeLib.c | 2 | ||||
-rw-r--r-- | Nt32Pkg/Sec/SecMain.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/Nt32OemHookStatusCodeLib.c b/Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/Nt32OemHookStatusCodeLib.c index bc8db38796..d7a1fb021a 100644 --- a/Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/Nt32OemHookStatusCodeLib.c +++ b/Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/Nt32OemHookStatusCodeLib.c @@ -17,7 +17,7 @@ //
// The package level header files this module uses
//
-#include <PiPei.h>
+#include <FrameworkPei.h>
#include <WinNtPeim.h>
//
diff --git a/Nt32Pkg/Sec/SecMain.h b/Nt32Pkg/Sec/SecMain.h index 3d2dd2c53e..82bb29d0ea 100644 --- a/Nt32Pkg/Sec/SecMain.h +++ b/Nt32Pkg/Sec/SecMain.h @@ -19,9 +19,7 @@ Abstract: **/
#include <stdio.h>
-#include <Base.h>
#include <PiPei.h>
-#include <PiDxe.h>
#include <WinNtPeim.h>
#include <Guid/StatusCodeDataTypeDebug.h>
#include <Library/BaseLib.h>
|