driver/1-chr-dev/drv.mod.c

40 lines
918 B
C
Raw Permalink Normal View History

2024-01-30 13:39:31 +00:00
#include <linux/build-salt.h>
#include <linux/module.h>
#include <linux/vermagic.h>
#include <linux/compiler.h>
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" },
{ 0x6bc3fbc0, "__unregister_chrdev" },
{ 0x636855de, "__register_chrdev" },
{ 0x189c5980, "arm_copy_to_user" },
{ 0x5f754e5a, "memset" },
{ 0x2cfde9a2, "warn_slowpath_fmt" },
{ 0x514cc273, "arm_copy_from_user" },
{ 0xefd6cf06, "__aeabi_unwind_cpp_pr0" },
{ 0xc5850110, "printk" },
};
MODULE_INFO(depends, "");