From f9cbe0c2e81d740fc0620dd41c74097065caa6b5 Mon Sep 17 00:00:00 2001 From: "Justin C. Miller" Date: Sat, 22 Feb 2020 14:48:24 -0800 Subject: [PATCH] Fix incorrect evt::signal_virtual_address_change and event_notify --- include/uefi/types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/uefi/types.h b/include/uefi/types.h index bc13710..5a28a1f 100644 --- a/include/uefi/types.h +++ b/include/uefi/types.h @@ -64,7 +64,7 @@ enum class evt : uint32_t notify_signal = 0x00000200, signal_exit_boot_services = 0x00000201, - signal_virtual_address_change = 0x60000201, + signal_virtual_address_change = 0x60000202, runtime = 0x40000000, timer = 0x80000000 @@ -78,7 +78,7 @@ enum class tpl : uint64_t high_level = 31 }; -using event_notify = status (*)(event, void*); +using event_notify = void (*)(event, void*); } // namespace uefi