diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-06-28 03:27:20 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-06-28 03:27:20 +0000 |
commit | 564995cdf55ca9dc057d0c966947caa7ace20e21 (patch) | |
tree | 21297a0cc658b6cb3c98203a41844f559e8fc5eb /IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint | |
parent | ff4ef0495628199c1754401f10b72ae4674ecac3 (diff) | |
download | edk2-platforms-564995cdf55ca9dc057d0c966947caa7ace20e21.tar.xz |
clean up modules
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2829 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint')
-rw-r--r-- | IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/DriverEntryPoint.c | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/DriverEntryPoint.c b/IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/DriverEntryPoint.c index 6cba691c46..5e0e0094e3 100644 --- a/IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/DriverEntryPoint.c +++ b/IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/DriverEntryPoint.c @@ -13,17 +13,22 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. **/
//
-// Include common header file for this module.
+// The package level header files this module uses
//
-#include "CommonHeader.h"
-
-#include <FrameworkDxe.h>
+#include <FrameworkSmm.h>
+//
+// The protocols, PPI and GUID defintions for this module
+//
+#include <Protocol/LoadedImage.h>
+#include <Protocol/SmmBase.h>
+#include <Protocol/DevicePath.h>
+//
+// The Library classes this module consumes
+//
+#include <Library/DxeSmmDriverEntryPoint.h>
#include <Library/UefiBootServicesTableLib.h>
#include <Library/DebugLib.h>
-#include <Library/DxeSmmDriverEntryPoint.h>
-#include <Protocol/LoadedImage.h>
-#include <Protocol/SmmBase.h>
EFI_BOOT_SERVICES *mBS;
|