mirror of
https://github.com/ipxe/ipxe
synced 2026-02-12 21:29:39 +03:00
[init] Show initialisation function names in debug messages
Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
@@ -210,6 +210,7 @@ static void certstore_init ( void ) {
|
||||
|
||||
/** Certificate store initialisation function */
|
||||
struct init_fn certstore_init_fn __init_fn ( INIT_LATE ) = {
|
||||
.name = "certstore",
|
||||
.initialise = certstore_init,
|
||||
};
|
||||
|
||||
|
||||
@@ -369,6 +369,7 @@ static void des_init ( void ) {
|
||||
|
||||
/** Initialisation function */
|
||||
struct init_fn des_init_fn __init_fn ( INIT_NORMAL ) = {
|
||||
.name = "des",
|
||||
.initialise = des_init,
|
||||
};
|
||||
|
||||
|
||||
@@ -334,6 +334,7 @@ static void x25519_init_constants ( void ) {
|
||||
|
||||
/** Initialisation function */
|
||||
struct init_fn x25519_init_fn __init_fn ( INIT_NORMAL ) = {
|
||||
.name = "x25519",
|
||||
.initialise = x25519_init_constants,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user