crypto: x86 - eliminate anonymous module_init & module_exit
Eliminate anonymous module_init() and module_exit(), which can lead to
confusion or ambiguity when reading System.map, crashes/oops/bugs,
or an initcall_debug log.
Give each of these init and exit functions unique driver-specific
names to eliminate the anonymous names.
Example 1: (System.map)
ffffffff832fc78c t init
ffffffff832fc79e t init
ffffffff832fc8f8 t init
Example 2: (initcall_debug log)
calling init+0x0/0x12 @ 1
initcall init+0x0/0x12 returned 0 after 15 usecs
calling init+0x0/0x60 @ 1
initcall init+0x0/0x60 returned 0 after 2 usecs
calling init+0x0/0x9a @ 1
initcall init+0x0/0x9a returned 0 after 74 usecs
Fixes: c2b8f89c886e ("crypto: blowfish - add x86_64 assembly implementation")
Fixes: 971676b25551 ("crypto: camellia-x86_64 - module init/exit functions should be static")
Fixes: bf7efec8018d ("crypto: camellia - add assembler implementation for x86_64")
Fixes: b72cd1a548bf ("crypto: serpent - add AVX2/x86_64 assembler implementation of serpent cipher")
Fixes: e14f1103b837 ("[CRYPTO] twofish: i586 assembly version")
Fixes: 13b85fd90567 ("crypto: twofish-x86_64-3way - module init/exit functions should be static")
Fixes: 7389334c8853 ("crypto: twofish - add 3-way parallel x86_64 assembler implemention")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Cc: Joachim Fritschi <jfritschi@freenet.de>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: linux-crypto@vger.kernel.org
Cc: x86@kernel.org
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>