diff options
author | Michael Brown <mcb30@ipxe.org> | 2019-01-25 14:53:43 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2019-01-25 14:53:43 +0000 |
commit | 36a4c85f911c85f5ab183331ff74d125f9a9ed32 (patch) | |
tree | 2954c7b32d75848821bd361c40432544e7d4a84a /src/core/serial.c | |
parent | de4565cbe76ea9f7913a01f331be3ee901bb6e17 (diff) | |
download | ipxe-36a4c85f911c85f5ab183331ff74d125f9a9ed32.tar.gz |
[init] Show startup and shutdown function names in debug messages
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/core/serial.c')
-rw-r--r-- | src/core/serial.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/serial.c b/src/core/serial.c index dd22f6731..bef9ccbab 100644 --- a/src/core/serial.c +++ b/src/core/serial.c @@ -181,5 +181,6 @@ struct init_fn serial_console_init_fn __init_fn ( INIT_CONSOLE ) = { /** Serial console startup function */ struct startup_fn serial_startup_fn __startup_fn ( STARTUP_EARLY ) = { + .name = "serial", .shutdown = serial_shutdown, }; |