Update MdeModulePkg to not use EFI_SPECIFICATION_VERSION and PI_SPECIFICATION_VERSION in source code.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9951 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qhuang8
2010-02-08 11:43:19 +00:00
parent 5b19df7ffa
commit 77dfa7c7fc
4 changed files with 11 additions and 15 deletions

View File

@@ -150,13 +150,11 @@ typedef struct {
//
#define EXPRESSION_STACK_SIZE_INCREMENT 0x100
#define EFI_SPECIFICATION_MAJOR_VERSION 0x2
#define EFI_SPECIFICATION_MINOR_VERSION 0x1
#define EFI_SPECIFICATION_ERRATA_VERSION 0x0
#define EFI_IFR_SPECIFICATION_VERSION (UINT16)((EFI_SPECIFICATION_MAJOR_VERSION << 8) | (EFI_SPECIFICATION_MINOR_VERSION << 4) | EFI_SPECIFICATION_ERRATA_VERSION)
#define EFI_SPECIFICATION_ERRATA_VERSION 0
#define EFI_IFR_SPECIFICATION_VERSION \
((((EFI_SPECIFICATION_VERSION) >> 8) & 0xff00) | \
(((EFI_SPECIFICATION_VERSION) & 0xf) << 4) | \
((EFI_SPECIFICATION_ERRATA_VERSION) & 0xf))
#define SETUP_DRIVER_SIGNATURE SIGNATURE_32 ('F', 'B', 'D', 'V')
typedef struct {

View File

@@ -1,7 +1,7 @@
#/** @file
# The DXE driver produces FORM BROWSER protocols defined in UEFI HII 2.1 specificatin.
#
# Copyright (c) 2007 - 2009, Intel Corporation. All rights reserved.
# Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
#
# All rights reserved. This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
@@ -20,7 +20,6 @@
FILE_GUID = EBf342FE-B1D3-4EF8-957C-8048606FF671
MODULE_TYPE = DXE_DRIVER
VERSION_STRING = 1.0
EFI_SPECIFICATION_VERSION = 0x0002000A
ENTRY_POINT = InitializeSetup
#