diff options
author | gdong1 <gdong1@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-01-08 09:37:30 +0000 |
---|---|---|
committer | gdong1 <gdong1@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-01-08 09:37:30 +0000 |
commit | 1b74e1c7ff8804851469922cae3af7fd83499b31 (patch) | |
tree | 1eb8df86b803b6f4dba7f95539378298f8f58e4f /IntelFrameworkPkg/Library/HiiLibFramework | |
parent | fce9f9bba071de15f412163498cfeb6ef24e4970 (diff) | |
download | edk2-platforms-1b74e1c7ff8804851469922cae3af7fd83499b31.tar.xz |
Fix FreePoll() bugs in some places.
Removed the dependency to MdeModulePkg in the HiiLibFramework
Removed EDK_RELEASE_VERSION and EFI_SPECIFICATION_VERSION in the Framework inf file.
other coding style changes
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7218 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkPkg/Library/HiiLibFramework')
-rw-r--r-- | IntelFrameworkPkg/Library/HiiLibFramework/HiiLibFramework.c | 1 | ||||
-rw-r--r-- | IntelFrameworkPkg/Library/HiiLibFramework/HiiLibFramework.inf | 19 |
2 files changed, 11 insertions, 9 deletions
diff --git a/IntelFrameworkPkg/Library/HiiLibFramework/HiiLibFramework.c b/IntelFrameworkPkg/Library/HiiLibFramework/HiiLibFramework.c index b24355494d..a72bf9c239 100644 --- a/IntelFrameworkPkg/Library/HiiLibFramework/HiiLibFramework.c +++ b/IntelFrameworkPkg/Library/HiiLibFramework/HiiLibFramework.c @@ -17,7 +17,6 @@ #include <Protocol/FrameworkHii.h>
-#include <Library/HiiLib.h>
#include <Library/DebugLib.h>
#include <Library/UefiBootServicesTableLib.h>
#include <Library/MemoryAllocationLib.h>
diff --git a/IntelFrameworkPkg/Library/HiiLibFramework/HiiLibFramework.inf b/IntelFrameworkPkg/Library/HiiLibFramework/HiiLibFramework.inf index 0aab12e2e3..361342f9eb 100644 --- a/IntelFrameworkPkg/Library/HiiLibFramework/HiiLibFramework.inf +++ b/IntelFrameworkPkg/Library/HiiLibFramework/HiiLibFramework.inf @@ -1,8 +1,9 @@ #/** @file
-# Library instance for HII common routines.
+# Library instance for HII common routines.
#
-# This library instance implements the common HII routines.
-# Copyright (c) 2006, Intel Corporation
+# This library instance implements the common HII routines.
+#
+# Copyright (c) 2006, 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
@@ -21,13 +22,10 @@ MODULE_TYPE = DXE_DRIVER
VERSION_STRING = 1.0
LIBRARY_CLASS = HiiLib|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER
- EDK_RELEASE_VERSION = 0x00020000
- EFI_SPECIFICATION_VERSION = 0x00020000
+ PI_SPECIFICATION_VERSION = 0x00000009
CONSTRUCTOR = HiiLibFrameworkConstructor
-
-
#
# The following information is for reference only and not required by the build tools.
#
@@ -39,10 +37,15 @@ [Packages]
MdePkg/MdePkg.dec
- MdeModulePkg/MdeModulePkg.dec
IntelFrameworkPkg/IntelFrameworkPkg.dec
[LibraryClasses]
MemoryAllocationLib
+ UefiBootServicesTableLib
DebugLib
+[Protocols]
+ gEfiHiiProtocolGuid # PROTOCOL ALWAYS_CONSUMED
+
+[Depex]
+ gEfiHiiProtocolGuid
|