34 lines
892 B
C
34 lines
892 B
C
|
#include <linux/module.h>
|
||
|
#include <linux/vermagic.h>
|
||
|
#include <linux/compiler.h>
|
||
|
|
||
|
MODULE_INFO(vermagic, VERMAGIC_STRING);
|
||
|
MODULE_INFO(name, KBUILD_MODNAME);
|
||
|
|
||
|
__visible struct module __this_module
|
||
|
__attribute__((section(".gnu.linkonce.this_module"))) = {
|
||
|
.name = KBUILD_MODNAME,
|
||
|
.arch = MODULE_ARCH_INIT,
|
||
|
};
|
||
|
|
||
|
#ifdef RETPOLINE
|
||
|
MODULE_INFO(retpoline, "Y");
|
||
|
#endif
|
||
|
|
||
|
static const struct modversion_info ____versions[]
|
||
|
__used
|
||
|
__attribute__((section("__versions"))) = {
|
||
|
{ 0x4bb34cb8, __VMLINUX_SYMBOL_STR(module_layout) },
|
||
|
{ 0x566494e1, __VMLINUX_SYMBOL_STR(seq_puts) },
|
||
|
{ 0x1e4a66ce, __VMLINUX_SYMBOL_STR(seq_printf) },
|
||
|
{ 0x27e1a049, __VMLINUX_SYMBOL_STR(printk) },
|
||
|
{ 0x3fd8cea8, __VMLINUX_SYMBOL_STR(proc_api_register) },
|
||
|
{ 0x4f77ae3a, __VMLINUX_SYMBOL_STR(proc_api_unregister) },
|
||
|
};
|
||
|
|
||
|
static const char __module_depends[]
|
||
|
__used
|
||
|
__attribute__((section(".modinfo"))) =
|
||
|
"depends=procapi";
|
||
|
|