diff options
author | wenyi,xie via groups.io <xiewenyi2=huawei.com@groups.io> | 2022-03-10 16:06:25 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2022-03-14 06:12:29 +0000 |
commit | 0fdd466c75e5980972fa4d57a31671fd47672a55 (patch) | |
tree | ad5bededf621ca0df855df8013a268e1ad41bde6 /UefiCpuPkg/Library | |
parent | 10b4c8f3b75f765a5d210aa6f2fbab100955062e (diff) | |
download | edk2-0fdd466c75e5980972fa4d57a31671fd47672a55.tar.gz edk2-0fdd466c75e5980972fa4d57a31671fd47672a55.tar.bz2 edk2-0fdd466c75e5980972fa4d57a31671fd47672a55.zip |
UefiCpuPkg/MpInitLib:remove optional in declaration
To keep the declaration same with definition, remove the last optional
in declaration of WakeUpAP.
Cc: Eric Dong <eric.dong@intel.com>
Reviewed-by: Ray Ni <ray.ni@intel.com>
Cc: Rahul Kumar <rahul1.kumar@intel.com>
Signed-off-by: Wenyi Xie <xiewenyi2@huawei.com>
Diffstat (limited to 'UefiCpuPkg/Library')
-rw-r--r-- | UefiCpuPkg/Library/MpInitLib/MpLib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/UefiCpuPkg/Library/MpInitLib/MpLib.h b/UefiCpuPkg/Library/MpInitLib/MpLib.h index 7d84a56fbc..f8c52426dd 100644 --- a/UefiCpuPkg/Library/MpInitLib/MpLib.h +++ b/UefiCpuPkg/Library/MpInitLib/MpLib.h @@ -477,7 +477,7 @@ WakeUpAP ( IN UINTN ProcessorNumber,
IN EFI_AP_PROCEDURE Procedure OPTIONAL,
IN VOID *ProcedureArgument OPTIONAL,
- IN BOOLEAN WakeUpDisabledAps OPTIONAL
+ IN BOOLEAN WakeUpDisabledAps
);
/**
|