public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v2-resend 0/2] ShellPkg/Acpiview: Add support for PCCT parser
@ 2020-11-04 12:18 Sami Mujawar
  2020-11-04 12:18 ` [PATCH v2-resend 2/2] ShellPkg/AcpiView: Fix field validator invocation Sami Mujawar
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Sami Mujawar @ 2020-11-04 12:18 UTC (permalink / raw)
  To: devel; +Cc: Sami Mujawar, ray.ni, zhichao.gao, Matteo.Carlini, Ben.Adderson,
	nd

Resending v2 patch series after adding Bugzilla ID and reordering
the patches. No code change since v2 series.

Ref: https://edk2.groups.io/g/devel/topic/77055380#66556

This patch series:
 - Fixes an issue wherein the field validation is not
   invoked when a print formatter is present.
 - Addresses the feedback for v1 patch for PCCT parser.

The changes can be seen at:
https://github.com/samimujawar/edk2/tree/840_pcct_parser_v2

Marc Moisson-Franckhauser (1):
  ShellPkg/AcpiView: PCCT Parser

Sami Mujawar (1):
  ShellPkg/AcpiView: Fix field validator invocation

 ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.c                    |  15 +-
 ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.h                    |  24 +-
 ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiTableParser.h               |   4 +-
 ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Pcct/PcctParser.c       | 615 ++++++++++++++++++++
 ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Pcct/PcctParser.h       |  33 ++
 ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.c   |   4 +-
 ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.inf |   4 +-
 7 files changed, 686 insertions(+), 13 deletions(-)
 create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Pcct/PcctParser.c
 create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Pcct/PcctParser.h

-- 
'Guid(CE165669-3EF3-493F-B85D-6190EE5B9759)'


^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCH v2-resend 0/2] ShellPkg/Acpiview: Add support for PCCT parser
@ 2020-11-04 12:33 Sami Mujawar
  0 siblings, 0 replies; 10+ messages in thread
From: Sami Mujawar @ 2020-11-04 12:33 UTC (permalink / raw)
  To: devel; +Cc: Sami Mujawar, ray.ni, zhichao.gao, Matteo.Carlini, Ben.Adderson,
	nd

Resending v2 patch series after adding Bugzilla ID and reordering
the patches. No code change since v2 series. Also fixed the patch
subject line to reflect the correct patch order.

Ref: https://edk2.groups.io/g/devel/topic/77055380#66556

This patch series:
 - Fixes an issue wherein the field validation is not
   invoked when a print formatter is present.
 - Addresses the feedback for v1 patch for PCCT parser.

The changes can be seen at:
https://github.com/samimujawar/edk2/tree/840_pcct_parser_v2

Marc Moisson-Franckhauser (1):
  ShellPkg/AcpiView: PCCT Parser

Sami Mujawar (1):
  ShellPkg/AcpiView: Fix field validator invocation

 ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.c                    |  15 +-
 ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.h                    |  24 +-
 ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiTableParser.h               |   4 +-
 ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Pcct/PcctParser.c       | 615 ++++++++++++++++++++
 ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Pcct/PcctParser.h       |  33 ++
 ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.c   |   4 +-
 ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.inf |   4 +-
 7 files changed, 686 insertions(+), 13 deletions(-)
 create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Pcct/PcctParser.c
 create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Pcct/PcctParser.h

-- 
'Guid(CE165669-3EF3-493F-B85D-6190EE5B9759)'


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2020-12-10  9:38 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-04 12:18 [PATCH v2-resend 0/2] ShellPkg/Acpiview: Add support for PCCT parser Sami Mujawar
2020-11-04 12:18 ` [PATCH v2-resend 2/2] ShellPkg/AcpiView: Fix field validator invocation Sami Mujawar
2020-11-04 12:26   ` [edk2-devel] " Sami Mujawar
2020-11-04 12:18 ` [PATCH v2-resend 1/2] ShellPkg/AcpiView: PCCT Parser Sami Mujawar
2020-11-04 12:26   ` [edk2-devel] " Sami Mujawar
2020-12-10  8:49   ` Gao, Zhichao
2020-12-10  9:05     ` Sami Mujawar
2020-12-10  9:37       ` [edk2-devel] " Gao, Zhichao
2020-11-04 12:23 ` [edk2-devel] [PATCH v2-resend 0/2] ShellPkg/Acpiview: Add support for PCCT parser Sami Mujawar
  -- strict thread matches above, loose matches on Subject: below --
2020-11-04 12:33 Sami Mujawar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox