summaryrefslogtreecommitdiff
path: root/MdePkg/Library/DxeCoreHobLib
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/DxeCoreHobLib')
-rw-r--r--MdePkg/Library/DxeCoreHobLib/CommonHeader.h33
-rw-r--r--MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf3
-rw-r--r--MdePkg/Library/DxeCoreHobLib/HobLib.c16
-rw-r--r--MdePkg/Library/DxeCoreHobLib/InternalHobLib.h (renamed from MdePkg/Library/DxeCoreHobLib/HobLib.h)5
4 files changed, 14 insertions, 43 deletions
diff --git a/MdePkg/Library/DxeCoreHobLib/CommonHeader.h b/MdePkg/Library/DxeCoreHobLib/CommonHeader.h
deleted file mode 100644
index 2ea383a2dc..0000000000
--- a/MdePkg/Library/DxeCoreHobLib/CommonHeader.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/**@file
- Common header file shared by all source files.
-
- This file includes package header files, library classes and protocol, PPI & GUID definitions.
-
- Copyright (c) 2007, Intel Corporation.
- All rights reserved. This program and the accompanying materials
- are licensed and made available under the terms and conditions of the BSD License
- which accompanies this distribution. The full text of the license may be found at
- http://opensource.org/licenses/bsd-license.php
- THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
- WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-**/
-
-#ifndef __COMMON_HEADER_H_
-#define __COMMON_HEADER_H_
-
-
-//
-// The package level header files this module uses
-//
-#include <PiDxe.h>
-//
-// The protocols, PPI and GUID defintions for this module
-//
-//
-// The Library classes this module consumes
-//
-#include <Library/HobLib.h>
-#include <Library/DebugLib.h>
-#include <Library/BaseMemoryLib.h>
-
-#endif
diff --git a/MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf b/MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
index b85faa09f9..fd1fd242f4 100644
--- a/MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
+++ b/MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
@@ -44,9 +44,8 @@
################################################################################
[Sources.common]
- HobLib.h
+ InternalHobLib.h
HobLib.c
- CommonHeader.h
################################################################################
diff --git a/MdePkg/Library/DxeCoreHobLib/HobLib.c b/MdePkg/Library/DxeCoreHobLib/HobLib.c
index 8175bf67a2..751d7cfeff 100644
--- a/MdePkg/Library/DxeCoreHobLib/HobLib.c
+++ b/MdePkg/Library/DxeCoreHobLib/HobLib.c
@@ -14,12 +14,22 @@
**/
+
+//
+// The package level header files this module uses
+//
+#include <PiDxe.h>
+//
+// The protocols, PPI and GUID defintions for this module
+//
//
-// Include common header file for this module.
+// The Library classes this module consumes
//
-#include "CommonHeader.h"
+#include <Library/HobLib.h>
+#include <Library/DebugLib.h>
+#include <Library/BaseMemoryLib.h>
-#include "HobLib.h"
+#include "InternalHobLib.h""
/**
Returns the pointer to the HOB list.
diff --git a/MdePkg/Library/DxeCoreHobLib/HobLib.h b/MdePkg/Library/DxeCoreHobLib/InternalHobLib.h
index 1ff08af938..8f0347639c 100644
--- a/MdePkg/Library/DxeCoreHobLib/HobLib.h
+++ b/MdePkg/Library/DxeCoreHobLib/InternalHobLib.h
@@ -17,11 +17,6 @@
#ifndef __DXE_ENTRY_POINT_HOB_LIB_H__
#define __DXE_ENTRY_POINT_HOB_LIB_H__
-//
-// Include common header file for this module.
-//
-#include "CommonHeader.h"
-
extern VOID *gHobList;
#endif