diff options
Diffstat (limited to 'linux/crypto/twofish_generic.mod.c')
-rw-r--r-- | linux/crypto/twofish_generic.mod.c | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/linux/crypto/twofish_generic.mod.c b/linux/crypto/twofish_generic.mod.c new file mode 100644 index 00000000..593fcf61 --- /dev/null +++ b/linux/crypto/twofish_generic.mod.c @@ -0,0 +1,34 @@ +#include <linux/module.h> +#include <linux/vermagic.h> +#include <linux/compiler.h> + +MODULE_INFO(vermagic, VERMAGIC_STRING); + +__visible struct module __this_module +__attribute__((section(".gnu.linkonce.this_module"))) = { + .name = KBUILD_MODNAME, + .init = init_module, +#ifdef CONFIG_MODULE_UNLOAD + .exit = cleanup_module, +#endif + .arch = MODULE_ARCH_INIT, +}; + +MODULE_INFO(intree, "Y"); + +static const struct modversion_info ____versions[] +__used +__attribute__((section("__versions"))) = { + { 0xf0da9032, __VMLINUX_SYMBOL_STR(module_layout) }, + { 0x46fab258, __VMLINUX_SYMBOL_STR(twofish_setkey) }, + { 0x87411292, __VMLINUX_SYMBOL_STR(crypto_unregister_alg) }, + { 0x2e5810c6, __VMLINUX_SYMBOL_STR(__aeabi_unwind_cpp_pr1) }, + { 0xfca4ac5, __VMLINUX_SYMBOL_STR(crypto_register_alg) }, + { 0xefd6cf06, __VMLINUX_SYMBOL_STR(__aeabi_unwind_cpp_pr0) }, +}; + +static const char __module_depends[] +__used +__attribute__((section(".modinfo"))) = +"depends=twofish_common"; + |