diff options
author | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-01-30 00:11:41 +0000 |
---|---|---|
committer | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-01-30 00:11:41 +0000 |
commit | 2a8e98291d2030e8eb25ed9dc4dbbf7c4453eb94 (patch) | |
tree | 0f610f8fb8d130a69a80bc596cead233b0301ed9 /PcAtChipsetPkg/8259InterruptControllerDxe | |
parent | 29a3f139893236103573bb924dec9b2ae835c61e (diff) | |
download | edk2-platforms-2a8e98291d2030e8eb25ed9dc4dbbf7c4453eb94.tar.xz |
Remove unnecessary use of FixedPcdxxx() functions and [FixedPcd] INF sections. These should only be used for PCDs that are used to pre-init global variables, pre-init global structures, or size arrays.
Do some minor clean ups to INF files
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9871 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'PcAtChipsetPkg/8259InterruptControllerDxe')
-rw-r--r-- | PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf b/PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf index dd9b3fe081..6135a535a4 100644 --- a/PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf +++ b/PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf @@ -1,7 +1,7 @@ #/** @file
# 8259 Interrupt Controller driver
#
-# Copyright (c) 2005 - 2009, Intel Corporation
+# Copyright (c) 2005 - 2010, 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
@@ -18,11 +18,12 @@ FILE_GUID = 79CA4208-BBA1-4a9a-8456-E1E66A81484E
MODULE_TYPE = DXE_DRIVER
VERSION_STRING = 1.0
- EDK_RELEASE_VERSION = 0x00020000
- EFI_SPECIFICATION_VERSION = 0x00020000
-
ENTRY_POINT = Install8259
+[Sources]
+ 8259.c
+ 8259.h
+
[Packages]
MdePkg/MdePkg.dec
IntelFrameworkPkg/IntelFrameworkPkg.dec
@@ -36,15 +37,11 @@ IoLib
PcdLib
-[Sources.common]
- 8259.c
- 8259.h
-
[Protocols]
gEfiLegacy8259ProtocolGuid # PROTOCOL ALWAYS_PRODUCED
gEfiPciIoProtocolGuid
-[Pcd]
+[FixedPcd]
gPcAtChipsetPkgTokenSpaceGuid.Pcd8259LegacyModeMask|0xFFFF
gPcAtChipsetPkgTokenSpaceGuid.Pcd8259LegacyModeEdgeLevel|0x0000
|