diff options
author | Michael D Kinney <michael.d.kinney@intel.com> | 2021-12-02 18:00:56 -0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-12-07 17:24:28 +0000 |
commit | 9b8507cabe99a04cc303f6918f07b5454b258c33 (patch) | |
tree | 706e19ca5fe6ff392b2ff56bdee88d7ad3ba47f9 /ShellPkg | |
parent | 12710fe93bf669540b4dfc783fbcc31db287a5db (diff) | |
download | edk2-9b8507cabe99a04cc303f6918f07b5454b258c33.tar.gz |
ShellPkg: 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: Ray Ni <ray.ni@intel.com>
Diffstat (limited to 'ShellPkg')
-rw-r--r-- | ShellPkg/Library/UefiShellDebug1CommandsLib/Mm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/Mm.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/Mm.c index 63fc3731cd..4e60baa325 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/Mm.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/Mm.c @@ -68,8 +68,8 @@ ShellMmDecodePciAddress ( IN UINT64 Address,
OUT UINT32 *Segment,
OUT UINT8 *Bus,
- OUT UINT8 *Device, OPTIONAL
- OUT UINT8 *Function, OPTIONAL
+ OUT UINT8 *Device OPTIONAL,
+ OUT UINT8 *Function OPTIONAL,
OUT UINT32 *Register OPTIONAL
)
{
|