mirror of https://github.com/acidanthera/audk.git
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
This commit is contained in:
parent
3dd05ac3e6
commit
d63d22102f
|
@ -2,7 +2,7 @@
|
||||||
Build a table, each item is (Key, Info) pair.
|
Build a table, each item is (Key, Info) pair.
|
||||||
And give a interface of query a string out of a table.
|
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
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
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
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -2718,11 +2718,11 @@ TABLE_ITEM CoolingDeviceTypeTable[] = {
|
||||||
L" Integrated Refrigeration "
|
L" Integrated Refrigeration "
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
0x0A,
|
0x10,
|
||||||
L" Active Cooling "
|
L" Active Cooling "
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
0x0B,
|
0x11,
|
||||||
L" Passive Cooling "
|
L" Passive Cooling "
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue