linux-zen-desktop/drivers/platform/x86/dell/dell-laptop.mod.c

109 lines
3.5 KiB
C
Raw Normal View History

2023-08-30 17:31:07 +02:00
#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") = {
{ 0x4dfa8d4b, "mutex_lock" },
{ 0x3213f038, "mutex_unlock" },
{ 0x8c8569cb, "kstrtoint" },
{ 0xbcab6ee6, "sscanf" },
{ 0xc5e260a7, "led_classdev_notify_brightness_hw_changed" },
{ 0xa19b956, "__stack_chk_fail" },
{ 0xcdce87c, "rfkill_set_hw_state_reason" },
{ 0x400cf737, "seq_printf" },
{ 0xd4835ef8, "dmi_check_system" },
{ 0x2f5507b8, "__platform_driver_register" },
{ 0x564043a0, "platform_device_alloc" },
{ 0x37a96071, "platform_device_add" },
{ 0x8bd4d992, "platform_device_put" },
{ 0x81e6b37f, "dmi_get_system_info" },
{ 0x5a921311, "strncmp" },
{ 0x2143ee6a, "led_classdev_register_ext" },
{ 0x4db7c870, "debugfs_create_dir" },
{ 0x7f192ea, "debugfs_create_file" },
{ 0x1b0b3141, "dell_laptop_register_notifier" },
{ 0x9d4b709e, "dell_privacy_has_mic_mute" },
{ 0xce593c22, "ledtrig_audio_get" },
{ 0x7de7bf50, "__acpi_video_get_backlight_type" },
{ 0xe0f99caf, "backlight_device_register" },
{ 0x868784cb, "__symbol_get" },
{ 0x597fd9bb, "platform_device_del" },
{ 0xeeda1ad3, "rfkill_alloc" },
{ 0xff282521, "rfkill_register" },
{ 0xa24f23d8, "__request_module" },
{ 0xf3b33ca5, "i8042_install_filter" },
{ 0x8a490c90, "rfkill_set_sw_state" },
{ 0xc0763484, "rfkill_blocked" },
{ 0xffeedf6a, "delayed_work_timer_fn" },
{ 0x5c7ac3b0, "seq_read" },
{ 0x9ee4a9a0, "single_release" },
{ 0x7b15985c, "seq_lseek" },
{ 0x69aea3a6, "param_ops_bool" },
{ 0xbdfb6dbb, "__fentry__" },
{ 0x5b8239ca, "__x86_return_thunk" },
{ 0x74c134b9, "__sw_hweight32" },
{ 0x3e14c9f0, "single_open" },
{ 0x2d3385d3, "system_wq" },
{ 0xb2fcb56d, "queue_delayed_work_on" },
{ 0x65487097, "__x86_indirect_thunk_rax" },
{ 0x6e9dd606, "__symbol_put" },
{ 0x9fa7184a, "cancel_delayed_work_sync" },
{ 0x83eb21c, "rfkill_unregister" },
{ 0xdb68bbad, "rfkill_destroy" },
{ 0x3292218a, "i8042_remove_filter" },
{ 0xd6c6b12d, "dell_laptop_unregister_notifier" },
{ 0xfedf6463, "debugfs_remove" },
{ 0x35c8d077, "led_classdev_unregister" },
{ 0x9ae2c5f3, "backlight_device_unregister" },
{ 0xc505f3b6, "platform_device_unregister" },
{ 0x2d97b4db, "platform_driver_unregister" },
{ 0x1eb9516e, "round_jiffies_relative" },
{ 0x4fdee897, "i8042_command" },
{ 0x7fd2ce06, "dell_smbios_find_token" },
{ 0x45170471, "dell_smbios_call" },
{ 0xc2871e79, "dell_smbios_error" },
{ 0x2c208607, "power_supply_is_system_supplied" },
{ 0x122c3a7e, "_printk" },
{ 0x3c3ff9fd, "sprintf" },
{ 0x6a6e05bf, "kstrtou8" },
{ 0x7098e516, "module_layout" },
};
MODULE_INFO(depends, "rfkill,dell-smbios,dell-wmi,ledtrig-audio,video");
MODULE_ALIAS("dmi*:svn*DellInc.*:ct*8*:");
MODULE_ALIAS("dmi*:svn*DellInc.*:ct*9*:");
MODULE_ALIAS("dmi*:svn*DellInc.*:ct*10*:");
MODULE_ALIAS("dmi*:svn*DellInc.*:ct*30*:");
MODULE_ALIAS("dmi*:svn*DellInc.*:ct*31*:");
MODULE_ALIAS("dmi*:svn*DellInc.*:ct*32*:");
MODULE_ALIAS("dmi*:svn*DellComputerCorporation*:ct*8*:");