DynamicTablesPkg: Change OPTIONAL keyword usage style

REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3760

Update all use of ', OPTIONAL' to ' OPTIONAL,' for function params.

Cc: Andrew Fish <afish@apple.com>
Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Michael Kubacki <michael.kubacki@microsoft.com>
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>
Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
This commit is contained in:
Michael D Kinney
2021-12-02 18:00:40 -08:00
committed by mergify[bot]
parent c8f46130f8
commit fe2d81892f
8 changed files with 53 additions and 53 deletions

View File

@@ -95,9 +95,9 @@ EFI_STATUS
EFIAPI
AmlGetObjectNodeInfo (
IN AML_OBJECT_NODE * ObjectNode,
OUT UINT8 * OpCode, OPTIONAL
OUT UINT8 * SubOpCode, OPTIONAL
OUT UINT32 * PkgLen, OPTIONAL
OUT UINT8 * OpCode OPTIONAL,
OUT UINT8 * SubOpCode OPTIONAL,
OUT UINT32 * PkgLen OPTIONAL,
OUT BOOLEAN * IsNameSpaceNode OPTIONAL
)
{
@@ -228,7 +228,7 @@ EFI_STATUS
EFIAPI
AmlGetDataNodeBuffer (
IN AML_DATA_NODE * DataNode,
OUT UINT8 * Buffer, OPTIONAL
OUT UINT8 * Buffer OPTIONAL,
IN OUT UINT32 * BufferSize
)
{