Skip to content

Commit aa02571

Browse files
Sherry Fanmergify[bot]
authored andcommitted
MdeModulePkg: Change EndofDxeEvent TPLs to TPL_CALLBACK
Change FPDT events at EndOfDxe to TPL_CALLBACK as TPL_NOTIFY is not necessary. Signed-off-by: Sherry Fan <[email protected]>
1 parent 03e7c8c commit aa02571

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

MdeModulePkg/Library/DxeCorePerformanceLib/DxeCorePerformanceLib.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1540,7 +1540,7 @@ DxeCorePerformanceLibConstructor (
15401540
//
15411541
Status = gBS->CreateEventEx (
15421542
EVT_NOTIFY_SIGNAL,
1543-
TPL_NOTIFY,
1543+
TPL_CALLBACK,
15441544
ReportFpdtRecordBuffer,
15451545
NULL,
15461546
&gEfiEndOfDxeEventGroupGuid,

MdeModulePkg/Universal/Acpi/FirmwarePerformanceDataTableDxe/FirmwarePerformanceDxe.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ FirmwarePerformanceDxeEntryPoint (
686686
//
687687
Status = gBS->CreateEventEx (
688688
EVT_NOTIFY_SIGNAL,
689-
TPL_NOTIFY,
689+
TPL_CALLBACK,
690690
FpdtEndOfDxeEventNotify,
691691
NULL,
692692
&gEfiEndOfDxeEventGroupGuid,

0 commit comments

Comments
 (0)