summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElvin Li <elvin.li@intel.com>2015-03-04 07:50:47 +0000
committerli-elvin <li-elvin@Edk2>2015-03-04 07:50:47 +0000
commitd63d22102f1026a350d276a646eff3e3c83e5f05 (patch)
tree98282d4808c799deb82aa095154b9131eafd616a
parent3dd05ac3e6a047cd0e85f590a9886a8cd4fd7a16 (diff)
ShellPkg: smbiosview shows wrong information for Type 27.
Fixed smbiosview to use correct value to parse Type 27. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Elvin Li <elvin.li@intel.com> Reviewed-by: Shumin Qiu <shumin.qiu@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17007 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r--ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c
index de6df5f12..b91ae360c 100644
--- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c
+++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c
@@ -2,7 +2,7 @@
Build a table, each item is (Key, Info) pair.
And give a interface of query a string out of a table.
- Copyright (c) 2005 - 2014, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2005 - 2015, Intel Corporation. All rights reserved.<BR>
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
@@ -2718,11 +2718,11 @@ TABLE_ITEM CoolingDeviceTypeTable[] = {
L" Integrated Refrigeration "
},
{
- 0x0A,
+ 0x10,
L" Active Cooling "
},
{
- 0x0B,
+ 0x11,
L" Passive Cooling "
},
};