Skip to content

Commit 1002500

Browse files
author
Eric Biggers
committed
lib/crypto: md5: Remove support for md5_mod_init_arch()
No definitions of md5_mod_init_arch() remain, so remove the code that handles it. Link: https://patch.msgid.link/20260629032552.26100-1-ebiggers@kernel.org Signed-off-by: Eric Biggers <ebiggers@kernel.org>
1 parent dc59e4f commit 1002500

1 file changed

Lines changed: 0 additions & 14 deletions

File tree

lib/crypto/md5.c

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -298,19 +298,5 @@ void hmac_md5_usingrawkey(const u8 *raw_key, size_t raw_key_len,
298298
}
299299
EXPORT_SYMBOL_GPL(hmac_md5_usingrawkey);
300300

301-
#ifdef md5_mod_init_arch
302-
static int __init md5_mod_init(void)
303-
{
304-
md5_mod_init_arch();
305-
return 0;
306-
}
307-
subsys_initcall(md5_mod_init);
308-
309-
static void __exit md5_mod_exit(void)
310-
{
311-
}
312-
module_exit(md5_mod_exit);
313-
#endif
314-
315301
MODULE_DESCRIPTION("MD5 and HMAC-MD5 library functions");
316302
MODULE_LICENSE("GPL");

0 commit comments

Comments
 (0)