diff options
Diffstat (limited to 'src/crypto')
-rw-r--r-- | src/crypto/rbg.c | 1 | ||||
-rw-r--r-- | src/crypto/rootcert.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/crypto/rbg.c b/src/crypto/rbg.c index a5a77e3c..4b45b347 100644 --- a/src/crypto/rbg.c +++ b/src/crypto/rbg.c @@ -126,6 +126,7 @@ static void rbg_shutdown_fn ( int booting __unused ) { /** RBG startup table entry */ struct startup_fn startup_rbg __startup_fn ( STARTUP_NORMAL ) = { + .name = "rbg", .startup = rbg_startup_fn, .shutdown = rbg_shutdown_fn, }; diff --git a/src/crypto/rootcert.c b/src/crypto/rootcert.c index f7b9dcfb..867ff50e 100644 --- a/src/crypto/rootcert.c +++ b/src/crypto/rootcert.c @@ -123,5 +123,6 @@ static void rootcert_init ( void ) { /** Root certificate initialiser */ struct startup_fn rootcert_startup_fn __startup_fn ( STARTUP_LATE ) = { + .name = "rootcert", .startup = rootcert_init, }; |