diff options
author | Michael D Kinney <michael.d.kinney@intel.com> | 2021-12-02 18:01:01 -0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-12-07 17:24:28 +0000 |
commit | e35dd3282157b2c9418999828c6dad695f148142 (patch) | |
tree | acc91bc61a91b7b7be9128c7037f342fde8987ec /UefiPayloadPkg/Include | |
parent | 4ec586b9f67a86036dfc8f23f4f8a0341513e94c (diff) | |
download | edk2-e35dd3282157b2c9418999828c6dad695f148142.tar.gz |
UefiPayloadPkg: 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 'UefiPayloadPkg/Include')
-rw-r--r-- | UefiPayloadPkg/Include/Library/SpiFlashLib.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/UefiPayloadPkg/Include/Library/SpiFlashLib.h b/UefiPayloadPkg/Include/Library/SpiFlashLib.h index 59840afb70..0f172dc15b 100644 --- a/UefiPayloadPkg/Include/Library/SpiFlashLib.h +++ b/UefiPayloadPkg/Include/Library/SpiFlashLib.h @@ -207,9 +207,8 @@ EFI_STATUS EFIAPI
SpiGetRegionAddress (
IN FLASH_REGION_TYPE FlashRegionType,
- OUT UINT32 *BaseAddress, OPTIONAL
+ OUT UINT32 *BaseAddress OPTIONAL,
OUT UINT32 *RegionSize OPTIONAL
);
#endif
-
|