Skip to content

Commit

Permalink
ShellPkg: Fix smbiosview system enclosure type table
Browse files Browse the repository at this point in the history
The SystemEnclosureTypeTable in QueryTable.c contained a couple
of errors: value 0x10 is "Lunch Box" not "Main Server Chassis", and
the Sub Notebook value was repeated as 0x13 when that entry is for
"SubChassis". The entries in-between needed adjusted.

Signed-off-by: Rebecca Cran <[email protected]>
Reviewed-by: Zhichao Gao <[email protected]>
  • Loading branch information
Rebecca Cran authored and mergify[bot] committed Apr 12, 2021
1 parent efa7f4d commit 97336fd
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,19 +188,19 @@ TABLE_ITEM SystemEnclosureTypeTable[] = {
},
{
0x10,
L" Main Server Chassis"
L" Lunch Box"
},
{
0x11,
L" Expansion Chassis"
L" Main Server Chassis"
},
{
0x12,
L" SubChassis"
L" Expansion Chassis"
},
{
0x13,
L" Sub Notebook"
L" SubChassis"
},
{
0x14,
Expand Down

0 comments on commit 97336fd

Please sign in to comment.