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
|
||
|
|
||
|
|
||
|
static const struct modversion_info ____versions[]
|
||
|
__used __section("__versions") = {
|
||
|
{ 0x3c6e70f1, "devm_release_action" },
|
||
|
{ 0x15ba50a6, "jiffies" },
|
||
|
{ 0x6a5258c6, "wmidev_evaluate_method" },
|
||
|
{ 0xb024ade4, "_dev_warn" },
|
||
|
{ 0x4dfa8d4b, "mutex_lock" },
|
||
|
{ 0x3213f038, "mutex_unlock" },
|
||
|
{ 0x53159613, "devres_open_group" },
|
||
|
{ 0xb0df83db, "devm_hwmon_device_register_with_info" },
|
||
|
{ 0x1f78426a, "devres_close_group" },
|
||
|
{ 0x60b28459, "devres_release_group" },
|
||
|
{ 0x1cfba015, "stackleak_track_stack" },
|
||
|
{ 0x96848186, "scnprintf" },
|
||
|
{ 0x4db7c870, "debugfs_create_dir" },
|
||
|
{ 0x4da911a6, "debugfs_create_devm_seqfile" },
|
||
|
{ 0x579a80b9, "battery_hook_register" },
|
||
|
{ 0x4ddf0d50, "__dynamic_dev_dbg" },
|
||
|
{ 0xa19b956, "__stack_chk_fail" },
|
||
|
{ 0xe783e261, "sysfs_emit" },
|
||
|
{ 0xa8d1337e, "_dev_info" },
|
||
|
{ 0x37b51c2f, "seq_write" },
|
||
|
{ 0x69aea3a6, "param_ops_bool" },
|
||
|
{ 0xbdfb6dbb, "__fentry__" },
|
||
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
||
|
{ 0x43f2c106, "__wmi_driver_register" },
|
||
|
{ 0x37a0cba, "kfree" },
|
||
|
{ 0xfedf6463, "debugfs_remove" },
|
||
|
{ 0xfdc5183a, "battery_hook_unregister" },
|
||
|
{ 0x44fa3155, "device_remove_file" },
|
||
|
{ 0x3b6c41ea, "kstrtouint" },
|
||
|
{ 0x625c0979, "device_create_file" },
|
||
|
{ 0x23ce6f3e, "wmi_driver_unregister" },
|
||
|
{ 0xcefb0c9f, "__mutex_init" },
|
||
|
{ 0xa7e58877, "devm_add_action" },
|
||
|
{ 0x5bc8ba21, "devm_kmalloc" },
|
||
|
{ 0x7098e516, "module_layout" },
|
||
|
};
|
||
|
|
||
|
MODULE_INFO(depends, "wmi");
|
||
|
|
||
|
MODULE_ALIAS("wmi:8A42EA14-4F2A-FD45-6422-0087F7A7E608");
|