diff options
author | Abdul Lateef Attar <abdul-lateef.attar@hpe.com> | 2016-04-21 04:24:14 -0700 |
---|---|---|
committer | Jaben Carsey <jaben.carsey@intel.com> | 2016-04-27 09:27:39 -0700 |
commit | 262e2d94b6c889fe0737a756bd4860d732aa2dc3 (patch) | |
tree | 21ebadbcb784f6f16786e765771cff65bcb46f82 /ShellPkg | |
parent | c87b13cdb572a1b91e16104dd62cc6250ed57c1d (diff) | |
download | edk2-262e2d94b6c889fe0737a756bd4860d732aa2dc3.tar.gz edk2-262e2d94b6c889fe0737a756bd4860d732aa2dc3.tar.bz2 edk2-262e2d94b6c889fe0737a756bd4860d732aa2dc3.zip |
ShellPkg: Fix pci command for '_e' option
ShellPkg: Fix pci command for '_e' option
Processing of '_e' argument was missing.
Added fix, to process the '_e' option
for printing additional AER information.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Abdul Lateef Attar <abdul-lateef.attar@hpe.com>
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
Reviewed-by: Qiu Shumin <shumin.qiu@intel.com>
Diffstat (limited to 'ShellPkg')
-rw-r--r-- | ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c index 4a8a97b94f..3e867fc514 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c @@ -2370,6 +2370,7 @@ PCI_CONFIG_SPACE *mConfigSpace = NULL; STATIC CONST SHELL_PARAM_ITEM ParamList[] = {
{L"-s", TypeValue},
{L"-i", TypeFlag},
+ {L"-_e", TypeFlag}, {NULL, TypeMax}
};
|