mirror of
https://github.com/ipxe/ipxe
synced 2026-04-16 03:00:10 +03:00
[init] Show initialisation function names in debug messages
Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
@@ -125,5 +125,6 @@ static void pci_settings_init ( void ) {
|
||||
|
||||
/** PCI device settings initialiser */
|
||||
struct init_fn pci_settings_init_fn __init_fn ( INIT_NORMAL ) = {
|
||||
.name = "pci",
|
||||
.initialise = pci_settings_init,
|
||||
};
|
||||
|
||||
@@ -173,5 +173,6 @@ static void usb_settings_init ( void ) {
|
||||
|
||||
/** USB device settings initialiser */
|
||||
struct init_fn usb_settings_init_fn __init_fn ( INIT_NORMAL ) = {
|
||||
.name = "usb",
|
||||
.initialise = usb_settings_init,
|
||||
};
|
||||
|
||||
@@ -259,5 +259,6 @@ static void chained_init ( void ) {
|
||||
|
||||
/** EFI chainloaded-device-only initialisation function */
|
||||
struct init_fn chained_init_fn __init_fn ( INIT_LATE ) = {
|
||||
.name = "chained",
|
||||
.initialise = chained_init,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user