92 lines
2.6 KiB
C
92 lines
2.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") = {
|
||
|
{ 0x7410aba2, "strreplace" },
|
||
|
{ 0xaba842fe, "wmi_query_block" },
|
||
|
{ 0x1e6d26a8, "strstr" },
|
||
|
{ 0x9eacf8a5, "kstrndup" },
|
||
|
{ 0x122c3a7e, "_printk" },
|
||
|
{ 0xa778b2f0, "fw_attributes_class_get" },
|
||
|
{ 0xaf1acdbd, "device_create" },
|
||
|
{ 0x928a5ed9, "kset_create_and_add" },
|
||
|
{ 0xdcbd3496, "kset_find_obj" },
|
||
|
{ 0xa2b97312, "kobject_add" },
|
||
|
{ 0x633f955, "sysfs_create_group" },
|
||
|
{ 0x2cf56265, "__dynamic_pr_debug" },
|
||
|
{ 0xc6af58f5, "sysfs_create_file_ns" },
|
||
|
{ 0xe914e41e, "strcpy" },
|
||
|
{ 0xa19b956, "__stack_chk_fail" },
|
||
|
{ 0x69aea3a6, "param_ops_bool" },
|
||
|
{ 0xbdfb6dbb, "__fentry__" },
|
||
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
||
|
{ 0x65487097, "__x86_indirect_thunk_rax" },
|
||
|
{ 0x43f2c106, "__wmi_driver_register" },
|
||
|
{ 0x37a0cba, "kfree" },
|
||
|
{ 0xc6cbbc89, "capable" },
|
||
|
{ 0x2d39b0a7, "kstrdup" },
|
||
|
{ 0xceab0311, "strchrnul" },
|
||
|
{ 0x754d539c, "strlen" },
|
||
|
{ 0x6068bedf, "wmi_evaluate_method" },
|
||
|
{ 0x99f2d00a, "sysfs_emit_at" },
|
||
|
{ 0x169938c1, "__sysfs_match_string" },
|
||
|
{ 0xe783e261, "sysfs_emit" },
|
||
|
{ 0x8c8569cb, "kstrtoint" },
|
||
|
{ 0x69acdf38, "memcpy" },
|
||
|
{ 0x56470118, "__warn_printk" },
|
||
|
{ 0x3c3ff9fd, "sprintf" },
|
||
|
{ 0xa916b694, "strnlen" },
|
||
|
{ 0xdd64e639, "strscpy" },
|
||
|
{ 0xcbd4898c, "fortify_panic" },
|
||
|
{ 0xb32cebcd, "sysfs_remove_group" },
|
||
|
{ 0x1e896416, "kobject_put" },
|
||
|
{ 0xdd4469a8, "sysfs_remove_file_ns" },
|
||
|
{ 0x4b3cfdc9, "kset_unregister" },
|
||
|
{ 0x366d357a, "device_destroy" },
|
||
|
{ 0xe609be46, "fw_attributes_class_put" },
|
||
|
{ 0x23ce6f3e, "wmi_driver_unregister" },
|
||
|
{ 0x349cba85, "strchr" },
|
||
|
{ 0x5b94ad75, "kmalloc_caches" },
|
||
|
{ 0xac4a1f46, "kmalloc_trace" },
|
||
|
{ 0x49a4fe58, "kobject_init" },
|
||
|
{ 0xe2d5255a, "strcmp" },
|
||
|
{ 0xfb384d37, "kasprintf" },
|
||
|
{ 0x81e6b37f, "dmi_get_system_info" },
|
||
|
{ 0xdb4ae490, "kobject_uevent" },
|
||
|
{ 0xc9d4d6d1, "wmi_has_guid" },
|
||
|
{ 0x7098e516, "module_layout" },
|
||
|
};
|
||
|
|
||
|
MODULE_INFO(depends, "wmi,firmware_attributes_class");
|
||
|
|
||
|
MODULE_ALIAS("wmi:51F5230E-9677-46CD-A1CF-C0B23EE34DB7");
|