diff options
author | Krzysztof Koch <krzysztof.koch@arm.com> | 2019-06-28 18:24:36 +0800 |
---|---|---|
committer | Ray Ni <ray.ni@intel.com> | 2019-07-02 17:22:45 +0800 |
commit | 3d3144350237017e3260bf37fbcc0ed30d2da5be (patch) | |
tree | 24d205b840e60efb2d2c54fcddb71c88706bd6ec /ShellPkg | |
parent | 5a119220c1c11e0dce5cc6ef1b3fa8eaef4b3d8e (diff) | |
download | edk2-3d3144350237017e3260bf37fbcc0ed30d2da5be.tar.gz edk2-3d3144350237017e3260bf37fbcc0ed30d2da5be.tar.bz2 edk2-3d3144350237017e3260bf37fbcc0ed30d2da5be.zip |
ShellPkg: acpiview: Make DBG2 output consistent with other tables
Print an extra newline character at the end DBG2 table parsing in order
to make the output resemble the one for other ACPI table parsers.
With this change, there is now a blank line between the DBG2 table dump
and the 'Table Statistics' section.
Signed-off-by: Krzysztof Koch <krzysztof.koch@arm.com>
Reviewed-by: Alexei Fedorov <Alexei.Fedorov@arm.com>
Reviewed-by: Zhichao Gao <zhichao.gao@intel.com>
Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
Diffstat (limited to 'ShellPkg')
-rw-r--r-- | ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Dbg2/Dbg2Parser.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Dbg2/Dbg2Parser.c b/ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Dbg2/Dbg2Parser.c index 310d3f18ec..8de5ebf747 100644 --- a/ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Dbg2/Dbg2Parser.c +++ b/ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Dbg2/Dbg2Parser.c @@ -1,7 +1,7 @@ /** @file
DBG2 table parser
- Copyright (c) 2016 - 2018, ARM Limited. All rights reserved.
+ Copyright (c) 2016 - 2019, ARM Limited. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
@par Reference(s):
@@ -190,6 +190,7 @@ DumpDbgDeviceInfo ( Print (L"\n%-*s ", OUTPUT_FIELD_COLUMN_WIDTH, L"");
}
}
+ Print (L"\n");
*Length = *DbgDevInfoLen;
}
|