mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-31 01:24:12 +02:00
MdePkg/UefiDebugLibDebugPortProtocol: ExitBootServicesCallback() static
REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3083 Since this is a library, make the function ExitBootServicesCallback() STATIC to prevent the likelihood that it collides with other symbols. Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
This commit is contained in:
parent
690f13fcb4
commit
55b043732d
@ -34,9 +34,10 @@ EFI_BOOT_SERVICES *mDebugBS;
|
|||||||
@param Context Pointer to the notification function's context.
|
@param Context Pointer to the notification function's context.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
|
static
|
||||||
VOID
|
VOID
|
||||||
EFIAPI
|
EFIAPI
|
||||||
ExitBootServicesCallback (
|
UefiDebugLibDebugPortProtocolExitBootServicesCallback (
|
||||||
EFI_EVENT Event,
|
EFI_EVENT Event,
|
||||||
VOID *Context
|
VOID *Context
|
||||||
)
|
)
|
||||||
@ -67,7 +68,7 @@ DxeDebugLibConstructor (
|
|||||||
mDebugBS->CreateEvent (
|
mDebugBS->CreateEvent (
|
||||||
EVT_SIGNAL_EXIT_BOOT_SERVICES,
|
EVT_SIGNAL_EXIT_BOOT_SERVICES,
|
||||||
TPL_NOTIFY,
|
TPL_NOTIFY,
|
||||||
ExitBootServicesCallback,
|
UefiDebugLibDebugPortProtocolExitBootServicesCallback,
|
||||||
NULL,
|
NULL,
|
||||||
&mExitBootServicesEvent
|
&mExitBootServicesEvent
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user