From 262e2d94b6c889fe0737a756bd4860d732aa2dc3 Mon Sep 17 00:00:00 2001 From: Abdul Lateef Attar Date: Thu, 21 Apr 2016 04:24:14 -0700 Subject: [PATCH] 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 Reviewed-by: Jaben Carsey Reviewed-by: Qiu Shumin --- ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c | 1 + 1 file changed, 1 insertion(+) 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} }; -- 2.39.2