69 lines
1.9 KiB
C
69 lines
1.9 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") = {
|
||
|
{ 0x9040242d, "_dev_err" },
|
||
|
{ 0xb024ade4, "_dev_warn" },
|
||
|
{ 0xb6f7d31c, "gpiod_get_value" },
|
||
|
{ 0xff81487d, "gpiod_remove_lookup_table" },
|
||
|
{ 0x3c12dfe, "cancel_work_sync" },
|
||
|
{ 0x23ce6f3e, "wmi_driver_unregister" },
|
||
|
{ 0x6068bedf, "wmi_evaluate_method" },
|
||
|
{ 0x207eb58b, "device_release_driver" },
|
||
|
{ 0xc0c42800, "device_reprobe" },
|
||
|
{ 0x5bc8ba21, "devm_kmalloc" },
|
||
|
{ 0xa7e58877, "devm_add_action" },
|
||
|
{ 0xbeb6f045, "acpi_dev_get_first_match_dev" },
|
||
|
{ 0x897f0847, "acpi_get_first_physical_node" },
|
||
|
{ 0x43ec602, "get_device" },
|
||
|
{ 0x38aa1397, "gpiod_add_lookup_table" },
|
||
|
{ 0x9d60ce51, "devm_gpiod_get" },
|
||
|
{ 0x512ab1db, "gpiod_to_irq" },
|
||
|
{ 0x52b1e45, "devm_request_threaded_irq" },
|
||
|
{ 0x222f0875, "devm_led_classdev_register_ext" },
|
||
|
{ 0xfdf8c5fa, "dev_err_probe" },
|
||
|
{ 0xbdfb6dbb, "__fentry__" },
|
||
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
||
|
{ 0x43f2c106, "__wmi_driver_register" },
|
||
|
{ 0x2d3385d3, "system_wq" },
|
||
|
{ 0xc5b6f236, "queue_work_on" },
|
||
|
{ 0xb5686f70, "put_device" },
|
||
|
{ 0xd92deb6b, "acpi_evaluate_object" },
|
||
|
{ 0x37a0cba, "kfree" },
|
||
|
{ 0x4ddf0d50, "__dynamic_dev_dbg" },
|
||
|
{ 0x7098e516, "module_layout" },
|
||
|
};
|
||
|
|
||
|
MODULE_INFO(depends, "wmi");
|
||
|
|
||
|
MODULE_ALIAS("wmi:243FEC1D-1963-41C1-8100-06A9D82A94B4");
|