37 lines
810 B
C
37 lines
810 B
C
#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" },
|
|
{ 0xc546631d, "of_find_property" },
|
|
{ 0xc5850110, "printk" },
|
|
{ 0x95b97b18, "of_find_node_opts_by_path" },
|
|
{ 0xefd6cf06, "__aeabi_unwind_cpp_pr0" },
|
|
{ 0xedc03953, "iounmap" },
|
|
};
|
|
|
|
MODULE_INFO(depends, "");
|
|
|