66 lines
1.6 KiB
C
66 lines
1.6 KiB
C
#include <linux/module.h>
|
|
#define INCLUDE_VERMAGIC
|
|
#include <linux/build-salt.h>
|
|
#include <linux/elfnote-lto.h>
|
|
#include <linux/export-internal.h>
|
|
#include <linux/vermagic.h>
|
|
#include <linux/compiler.h>
|
|
|
|
BUILD_SALT;
|
|
BUILD_LTO_INFO;
|
|
|
|
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,
|
|
};
|
|
|
|
MODULE_INFO(intree, "Y");
|
|
|
|
#ifdef CONFIG_RETPOLINE
|
|
MODULE_INFO(retpoline, "Y");
|
|
#endif
|
|
|
|
|
|
static const struct modversion_info ____versions[]
|
|
__used __section("__versions") = {
|
|
{ 0x37b51c2f, "seq_write" },
|
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
|
{ 0xfb578fc5, "memset" },
|
|
{ 0xc805f93, "clflush_cache_range" },
|
|
{ 0xce807a25, "up_write" },
|
|
{ 0x2ac829e5, "securityfs_remove" },
|
|
{ 0x57bc19d2, "down_write" },
|
|
{ 0x2d97b4db, "platform_driver_unregister" },
|
|
{ 0x1f1821ae, "efi" },
|
|
{ 0x4d924f20, "memremap" },
|
|
{ 0x9040242d, "_dev_err" },
|
|
{ 0x9e9fdd9d, "memunmap" },
|
|
{ 0x79df9633, "ioremap_encrypted" },
|
|
{ 0xedc03953, "iounmap" },
|
|
{ 0xf1f7ac84, "securityfs_create_dir" },
|
|
{ 0x3c3ff9fd, "sprintf" },
|
|
{ 0x40a732c7, "securityfs_create_file" },
|
|
{ 0x4ddf0d50, "__dynamic_dev_dbg" },
|
|
{ 0xa8d1337e, "_dev_info" },
|
|
{ 0xa19b956, "__stack_chk_fail" },
|
|
{ 0x2a8dcad3, "simple_lookup" },
|
|
{ 0x5c7ac3b0, "seq_read" },
|
|
{ 0x9ee4a9a0, "single_release" },
|
|
{ 0x7b15985c, "seq_lseek" },
|
|
{ 0xbdfb6dbb, "__fentry__" },
|
|
{ 0x2f5507b8, "__platform_driver_register" },
|
|
{ 0x3e14c9f0, "single_open" },
|
|
{ 0x7098e516, "module_layout" },
|
|
};
|
|
|
|
MODULE_INFO(depends, "");
|
|
|