#include #include #include #include BUILD_SALT; MODULE_INFO(vermagic, VERMAGIC_STRING); MODULE_INFO(name, KBUILD_MODNAME); __visible struct module __this_module __section(.gnu.linkonce.this_module) = { .name = KBUILD_MODNAME, .init = init_module, #ifdef CONFIG_MODULE_UNLOAD .exit = cleanup_module, #endif .arch = MODULE_ARCH_INIT, }; #ifdef CONFIG_RETPOLINE MODULE_INFO(retpoline, "Y"); #endif static const struct modversion_info ____versions[] __used __section(__versions) = { { 0x4b3323eb, "module_layout" }, { 0xedc03953, "iounmap" }, { 0x6bc3fbc0, "__unregister_chrdev" }, { 0xe97c4103, "ioremap" }, { 0x636855de, "__register_chrdev" }, { 0xdecd0b29, "__stack_chk_fail" }, { 0x5f754e5a, "memset" }, { 0x514cc273, "arm_copy_from_user" }, { 0x8f678b07, "__stack_chk_guard" }, { 0x189c5980, "arm_copy_to_user" }, { 0xefd6cf06, "__aeabi_unwind_cpp_pr0" }, { 0xc5850110, "printk" }, }; MODULE_INFO(depends, "");