90 lines
2.5 KiB
C
90 lines
2.5 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") = {
|
|
{ 0xf9c0b663, "strlcat" },
|
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
|
{ 0xe2d5255a, "strcmp" },
|
|
{ 0x23ce6f3e, "wmi_driver_unregister" },
|
|
{ 0x2d39b0a7, "kstrdup" },
|
|
{ 0xb32cebcd, "sysfs_remove_group" },
|
|
{ 0x3c3ff9fd, "sprintf" },
|
|
{ 0xdd64e639, "strscpy" },
|
|
{ 0x43f2c106, "__wmi_driver_register" },
|
|
{ 0x85df9b6c, "strsep" },
|
|
{ 0x3213f038, "mutex_unlock" },
|
|
{ 0xdcbd3496, "kset_find_obj" },
|
|
{ 0x366d357a, "device_destroy" },
|
|
{ 0x2cf56265, "__dynamic_pr_debug" },
|
|
{ 0xdb4ae490, "kobject_uevent" },
|
|
{ 0xac4a1f46, "kmalloc_trace" },
|
|
{ 0x754d539c, "strlen" },
|
|
{ 0x97adb487, "utf8s_to_utf16s" },
|
|
{ 0xeb233a45, "__kmalloc" },
|
|
{ 0x5b94ad75, "kmalloc_caches" },
|
|
{ 0x928a5ed9, "kset_create_and_add" },
|
|
{ 0x1e896416, "kobject_put" },
|
|
{ 0xc6af58f5, "sysfs_create_file_ns" },
|
|
{ 0xb0e602eb, "memmove" },
|
|
{ 0x656e4a6e, "snprintf" },
|
|
{ 0xa778b2f0, "fw_attributes_class_get" },
|
|
{ 0x69acdf38, "memcpy" },
|
|
{ 0x37a0cba, "kfree" },
|
|
{ 0x4b3cfdc9, "kset_unregister" },
|
|
{ 0xcbd4898c, "fortify_panic" },
|
|
{ 0xbdfb6dbb, "__fentry__" },
|
|
{ 0x65487097, "__x86_indirect_thunk_rax" },
|
|
{ 0x122c3a7e, "_printk" },
|
|
{ 0xdd4469a8, "sysfs_remove_file_ns" },
|
|
{ 0xa916b694, "strnlen" },
|
|
{ 0x167c5967, "print_hex_dump" },
|
|
{ 0x9040242d, "_dev_err" },
|
|
{ 0x8c8569cb, "kstrtoint" },
|
|
{ 0xa07a37f0, "memchr" },
|
|
{ 0x6a5258c6, "wmidev_evaluate_method" },
|
|
{ 0xaf1acdbd, "device_create" },
|
|
{ 0x4dfa8d4b, "mutex_lock" },
|
|
{ 0xaafdc258, "strcasecmp" },
|
|
{ 0xe609be46, "fw_attributes_class_put" },
|
|
{ 0x1e666262, "kobject_init_and_add" },
|
|
{ 0x6add5c9a, "dmi_find_device" },
|
|
{ 0x633f955, "sysfs_create_group" },
|
|
{ 0xaba842fe, "wmi_query_block" },
|
|
{ 0x169938c1, "__sysfs_match_string" },
|
|
{ 0x7098e516, "module_layout" },
|
|
};
|
|
|
|
MODULE_INFO(depends, "wmi,firmware_attributes_class");
|
|
|
|
MODULE_ALIAS("wmi:F1DDEE52-063C-4784-A11E-8A06684B9BF4");
|
|
MODULE_ALIAS("wmi:70FE8229-D03B-4214-A1C6-1F884B1A892A");
|