79 lines
2.3 KiB
C
79 lines
2.3 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") = {
|
||
|
{ 0x5b94ad75, "kmalloc_caches" },
|
||
|
{ 0xac4a1f46, "kmalloc_trace" },
|
||
|
{ 0xdbdf6c92, "ioport_resource" },
|
||
|
{ 0x85bd1608, "__request_region" },
|
||
|
{ 0x122c3a7e, "_printk" },
|
||
|
{ 0xe0f99caf, "backlight_device_register" },
|
||
|
{ 0x65487097, "__x86_indirect_thunk_rax" },
|
||
|
{ 0xdab0f892, "apple_bl_unregister" },
|
||
|
{ 0x2fbe8eff, "is_acpi_device_node" },
|
||
|
{ 0x735e6a81, "acpi_evaluate_integer" },
|
||
|
{ 0x170ddf79, "acpi_install_notify_handler" },
|
||
|
{ 0x1344d7e6, "acpi_enable_gpe" },
|
||
|
{ 0xcd8ce890, "acpi_format_exception" },
|
||
|
{ 0x1c58427f, "acpi_remove_notify_handler" },
|
||
|
{ 0x9ae2c5f3, "backlight_device_unregister" },
|
||
|
{ 0x1035c7c2, "__release_region" },
|
||
|
{ 0x37a0cba, "kfree" },
|
||
|
{ 0xbeb6f045, "acpi_dev_get_first_match_dev" },
|
||
|
{ 0x897f0847, "acpi_get_first_physical_node" },
|
||
|
{ 0x43ec602, "get_device" },
|
||
|
{ 0xcefb0c9f, "__mutex_init" },
|
||
|
{ 0xa26450a2, "pci_bus_type" },
|
||
|
{ 0x1e155b0e, "bus_for_each_dev" },
|
||
|
{ 0x608741b5, "__init_swait_queue_head" },
|
||
|
{ 0xf02aa937, "wait_for_completion_interruptible_timeout" },
|
||
|
{ 0x2cf56265, "__dynamic_pr_debug" },
|
||
|
{ 0xa4faf62a, "acpi_disable_gpe" },
|
||
|
{ 0x2c63e051, "apple_bl_register" },
|
||
|
{ 0xa6257a2f, "complete" },
|
||
|
{ 0xbdfb6dbb, "__fentry__" },
|
||
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
||
|
{ 0x621a96ae, "pnp_register_driver" },
|
||
|
{ 0xd07beaa7, "pnp_unregister_driver" },
|
||
|
{ 0x4dfa8d4b, "mutex_lock" },
|
||
|
{ 0xeae3dfd6, "__const_udelay" },
|
||
|
{ 0x3213f038, "mutex_unlock" },
|
||
|
{ 0xead442e0, "pnp_get_resource" },
|
||
|
{ 0xb5686f70, "put_device" },
|
||
|
{ 0x7098e516, "module_layout" },
|
||
|
};
|
||
|
|
||
|
MODULE_INFO(depends, "apple_bl");
|
||
|
|
||
|
MODULE_ALIAS("pnp:dAPP000B*");
|
||
|
MODULE_ALIAS("acpi*:APP000B:*");
|