diff options
author | Michael D Kinney <michael.d.kinney@intel.com> | 2021-12-02 18:00:42 -0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-12-07 17:24:28 +0000 |
commit | c69fc80c8040d783e54e8707eaf375625706ad59 (patch) | |
tree | 9eaeeb76d1b0838c3f676481f7f965a2213b3049 /EmulatorPkg/Unix | |
parent | 792433088c8bd67725bf1cc4a89408ec7a112719 (diff) | |
download | edk2-c69fc80c8040d783e54e8707eaf375625706ad59.tar.gz edk2-c69fc80c8040d783e54e8707eaf375625706ad59.tar.bz2 edk2-c69fc80c8040d783e54e8707eaf375625706ad59.zip |
EmulatorPkg: 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 'EmulatorPkg/Unix')
-rw-r--r-- | EmulatorPkg/Unix/Host/Host.h | 4 | ||||
-rw-r--r-- | EmulatorPkg/Unix/Host/Ia32/SwitchStack.c | 7 |
2 files changed, 4 insertions, 7 deletions
diff --git a/EmulatorPkg/Unix/Host/Host.h b/EmulatorPkg/Unix/Host/Host.h index 9791cf8c37..a372ecaadb 100644 --- a/EmulatorPkg/Unix/Host/Host.h +++ b/EmulatorPkg/Unix/Host/Host.h @@ -300,8 +300,8 @@ SecPeCoffLoaderUnloadImageExtraAction ( VOID
PeiSwitchStacks (
IN SWITCH_STACK_ENTRY_POINT EntryPoint,
- IN VOID *Context1, OPTIONAL
- IN VOID *Context2, OPTIONAL
+ IN VOID *Context1 OPTIONAL,
+ IN VOID *Context2 OPTIONAL,
IN VOID *NewStack
);
diff --git a/EmulatorPkg/Unix/Host/Ia32/SwitchStack.c b/EmulatorPkg/Unix/Host/Ia32/SwitchStack.c index d9f7470c06..0184de2894 100644 --- a/EmulatorPkg/Unix/Host/Ia32/SwitchStack.c +++ b/EmulatorPkg/Unix/Host/Ia32/SwitchStack.c @@ -34,8 +34,8 @@ VOID EFIAPI
PeiSwitchStacks (
IN SWITCH_STACK_ENTRY_POINT EntryPoint,
- IN VOID *Context1, OPTIONAL
- IN VOID *Context2, OPTIONAL
+ IN VOID *Context1 OPTIONAL,
+ IN VOID *Context2 OPTIONAL,
IN VOID *NewStack
)
{
@@ -63,6 +63,3 @@ PeiSwitchStacks ( //
ASSERT (FALSE);
}
-
-
-
|