93 lines
2.8 KiB
C
93 lines
2.8 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") = {
|
||
|
{ 0x2f5507b8, "__platform_driver_register" },
|
||
|
{ 0x85e0350e, "platform_device_register_full" },
|
||
|
{ 0x4dfa8d4b, "mutex_lock" },
|
||
|
{ 0x6068bedf, "wmi_evaluate_method" },
|
||
|
{ 0x3213f038, "mutex_unlock" },
|
||
|
{ 0x1cfba015, "stackleak_track_stack" },
|
||
|
{ 0xa19b956, "__stack_chk_fail" },
|
||
|
{ 0x3c3ff9fd, "sprintf" },
|
||
|
{ 0x8c8569cb, "kstrtoint" },
|
||
|
{ 0x45081703, "ec_get_handle" },
|
||
|
{ 0x509b64ea, "acpi_has_method" },
|
||
|
{ 0xd92deb6b, "acpi_evaluate_object" },
|
||
|
{ 0x7cae9d9d, "devm_input_allocate_device" },
|
||
|
{ 0x6b0bf93, "sparse_keymap_setup" },
|
||
|
{ 0xb5285526, "input_register_device" },
|
||
|
{ 0xf18bdd75, "wmi_install_notify_handler" },
|
||
|
{ 0xcefb0c9f, "__mutex_init" },
|
||
|
{ 0xce593c22, "ledtrig_audio_get" },
|
||
|
{ 0x222f0875, "devm_led_classdev_register_ext" },
|
||
|
{ 0x579a80b9, "battery_hook_register" },
|
||
|
{ 0x4db7c870, "debugfs_create_dir" },
|
||
|
{ 0x984f6b62, "debugfs_create_x64" },
|
||
|
{ 0x7f192ea, "debugfs_create_file" },
|
||
|
{ 0xf9a482f9, "msleep" },
|
||
|
{ 0xbcab6ee6, "sscanf" },
|
||
|
{ 0x5c7ac3b0, "seq_read" },
|
||
|
{ 0x9ee4a9a0, "single_release" },
|
||
|
{ 0x7b15985c, "seq_lseek" },
|
||
|
{ 0xcf1c0e14, "param_ops_bint" },
|
||
|
{ 0xbdfb6dbb, "__fentry__" },
|
||
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
||
|
{ 0x44fa3155, "device_remove_file" },
|
||
|
{ 0x625c0979, "device_create_file" },
|
||
|
{ 0x3e14c9f0, "single_open" },
|
||
|
{ 0xc505f3b6, "platform_device_unregister" },
|
||
|
{ 0x2d97b4db, "platform_driver_unregister" },
|
||
|
{ 0x37a0cba, "kfree" },
|
||
|
{ 0xc9d4d6d1, "wmi_has_guid" },
|
||
|
{ 0x76ae31fd, "wmi_remove_notify_handler" },
|
||
|
{ 0xfedf6463, "debugfs_remove" },
|
||
|
{ 0xfdc5183a, "battery_hook_unregister" },
|
||
|
{ 0x17b0f8ca, "wmi_get_event_data" },
|
||
|
{ 0x9040242d, "_dev_err" },
|
||
|
{ 0x84e19161, "sparse_keymap_entry_from_scancode" },
|
||
|
{ 0xb1dafb60, "sparse_keymap_report_entry" },
|
||
|
{ 0xaba842fe, "wmi_query_block" },
|
||
|
{ 0xa8d1337e, "_dev_info" },
|
||
|
{ 0x400cf737, "seq_printf" },
|
||
|
{ 0xf03b44e, "seq_puts" },
|
||
|
{ 0x5b94ad75, "kmalloc_caches" },
|
||
|
{ 0xac4a1f46, "kmalloc_trace" },
|
||
|
{ 0xd4835ef8, "dmi_check_system" },
|
||
|
{ 0x7098e516, "module_layout" },
|
||
|
};
|
||
|
|
||
|
MODULE_INFO(depends, "wmi,sparse-keymap,ledtrig-audio");
|
||
|
|
||
|
MODULE_ALIAS("wmi:59142400-C6A3-40fa-BADB-8A2652834100");
|
||
|
MODULE_ALIAS("wmi:ABBC0F5C-8EA1-11D1-A000-C90629100000");
|