74 lines
2.0 KiB
C
74 lines
2.0 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
|
|
|
|
SYMBOL_CRC(roccat_report_event, 0x3e4427c8, "_gpl");
|
|
SYMBOL_CRC(roccat_connect, 0xcf0f0e0c, "_gpl");
|
|
SYMBOL_CRC(roccat_disconnect, 0x2f622ea1, "_gpl");
|
|
|
|
static const struct modversion_info ____versions[]
|
|
__used __section("__versions") = {
|
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
|
{ 0x66b4cc41, "kmemdup" },
|
|
{ 0x4dfa8d4b, "mutex_lock" },
|
|
{ 0x37a0cba, "kfree" },
|
|
{ 0x3213f038, "mutex_unlock" },
|
|
{ 0xe2964344, "__wake_up" },
|
|
{ 0xb2fd5ceb, "__put_user_4" },
|
|
{ 0x366d357a, "device_destroy" },
|
|
{ 0xe8bfce7e, "hid_hw_close" },
|
|
{ 0x65487097, "__x86_indirect_thunk_rax" },
|
|
{ 0x122c3a7e, "_printk" },
|
|
{ 0xe3ec2f2b, "alloc_chrdev_region" },
|
|
{ 0xb55b78f0, "cdev_init" },
|
|
{ 0x52fb3984, "cdev_add" },
|
|
{ 0x6091b333, "unregister_chrdev_region" },
|
|
{ 0x9d8df912, "cdev_del" },
|
|
{ 0x5b94ad75, "kmalloc_caches" },
|
|
{ 0xac4a1f46, "kmalloc_trace" },
|
|
{ 0x1e6ac8, "hid_hw_open" },
|
|
{ 0xaf1acdbd, "device_create" },
|
|
{ 0xd9a5ea54, "__init_waitqueue_head" },
|
|
{ 0xcefb0c9f, "__mutex_init" },
|
|
{ 0xe9c322a0, "pcpu_hot" },
|
|
{ 0xaad8c7d6, "default_wake_function" },
|
|
{ 0x88db9f48, "__check_object_size" },
|
|
{ 0x6b10bee1, "_copy_to_user" },
|
|
{ 0x4afb2238, "add_wait_queue" },
|
|
{ 0x37110088, "remove_wait_queue" },
|
|
{ 0x1000e51, "schedule" },
|
|
{ 0xca37485a, "noop_llseek" },
|
|
{ 0xbdfb6dbb, "__fentry__" },
|
|
{ 0x66cca4f9, "__x86_indirect_thunk_rcx" },
|
|
{ 0x7098e516, "module_layout" },
|
|
};
|
|
|
|
MODULE_INFO(depends, "");
|
|
|