diff options
author | Michael Brown | 2019-01-25 15:53:43 +0100 |
---|---|---|
committer | Michael Brown | 2019-01-25 15:53:43 +0100 |
commit | 36a4c85f911c85f5ab183331ff74d125f9a9ed32 (patch) | |
tree | 2954c7b32d75848821bd361c40432544e7d4a84a /src/interface/efi | |
parent | [util] Add support for EFI ROM images (diff) | |
download | ipxe-36a4c85f911c85f5ab183331ff74d125f9a9ed32.tar.gz ipxe-36a4c85f911c85f5ab183331ff74d125f9a9ed32.tar.xz ipxe-36a4c85f911c85f5ab183331ff74d125f9a9ed32.zip |
[init] Show startup and shutdown function names in debug messages
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/interface/efi')
-rw-r--r-- | src/interface/efi/efi_timer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interface/efi/efi_timer.c b/src/interface/efi/efi_timer.c index 8fe307ce..8f40cb81 100644 --- a/src/interface/efi/efi_timer.c +++ b/src/interface/efi/efi_timer.c @@ -212,6 +212,7 @@ static void efi_tick_shutdown ( int booting __unused ) { /** Timer tick startup function */ struct startup_fn efi_tick_startup_fn __startup_fn ( STARTUP_EARLY ) = { + .name = "efi_tick", .startup = efi_tick_startup, .shutdown = efi_tick_shutdown, }; |