diff options
author | Ruiyu Ni <ruiyu.ni@intel.com> | 2017-01-24 14:40:30 +0800 |
---|---|---|
committer | Ruiyu Ni <ruiyu.ni@intel.com> | 2017-01-25 16:09:13 +0800 |
commit | 26ca6f7e1e2f3ba247d1d3150d6bfb22043a8cda (patch) | |
tree | b481fe774d24960e74f4f79b8ee2341c4e932e14 | |
parent | c831a2c3b0b2a2a7097280df95d2af49f0dbe269 (diff) | |
download | edk2-26ca6f7e1e2f3ba247d1d3150d6bfb22043a8cda.tar.gz edk2-26ca6f7e1e2f3ba247d1d3150d6bfb22043a8cda.tar.bz2 edk2-26ca6f7e1e2f3ba247d1d3150d6bfb22043a8cda.zip |
ShellPkg/pci: Fix extended register dumping for MFVC capability
https://bugzilla.tianocore.org/show_bug.cgi?id=355
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
-rw-r--r-- | ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c index 99e6caff87..fb7561f668 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c @@ -5505,7 +5505,8 @@ PrintInterpretedExtendedCompatibilityVirtualChannel ( DumpHex (
4,
EFI_PCIE_CAPABILITY_BASE_OFFSET + ((UINT8*)HeaderAddress - (UINT8*)HeadersBaseAddress),
- sizeof(PCI_EXPRESS_EXTENDED_CAPABILITIES_VIRTUAL_CHANNEL_VC) + (Header->ExtendedVcCount - 1) * sizeof(PCI_EXPRESS_EXTENDED_CAPABILITIES_VIRTUAL_CHANNEL_CAPABILITY),
+ sizeof (PCI_EXPRESS_EXTENDED_CAPABILITIES_VIRTUAL_CHANNEL_CAPABILITY)
+ + Header->ExtendedVcCount * sizeof (PCI_EXPRESS_EXTENDED_CAPABILITIES_VIRTUAL_CHANNEL_VC),
(VOID *) (HeaderAddress)
);
|