59 lines
1.5 KiB
C
59 lines
1.5 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
|
|
|
|
SYMBOL_CRC(apple_bl_register, 0x2c63e051, "_gpl");
|
|
SYMBOL_CRC(apple_bl_unregister, 0xdab0f892, "_gpl");
|
|
|
|
static const struct modversion_info ____versions[]
|
|
__used __section("__versions") = {
|
|
{ 0x13f677d9, "acpi_bus_register_driver" },
|
|
{ 0xf145ef9b, "acpi_bus_unregister_driver" },
|
|
{ 0x57f2cc56, "pci_get_domain_bus_and_slot" },
|
|
{ 0x6ca35f47, "pci_dev_put" },
|
|
{ 0x65487097, "__x86_indirect_thunk_rax" },
|
|
{ 0x85bd1608, "__request_region" },
|
|
{ 0xe0f99caf, "backlight_device_register" },
|
|
{ 0x4dfa8d4b, "mutex_lock" },
|
|
{ 0x3213f038, "mutex_unlock" },
|
|
{ 0x122c3a7e, "_printk" },
|
|
{ 0xa7940382, "param_ops_int" },
|
|
{ 0xbdfb6dbb, "__fentry__" },
|
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
|
{ 0x9ae2c5f3, "backlight_device_unregister" },
|
|
{ 0xdbdf6c92, "ioport_resource" },
|
|
{ 0x1035c7c2, "__release_region" },
|
|
{ 0x2cf56265, "__dynamic_pr_debug" },
|
|
{ 0x7098e516, "module_layout" },
|
|
};
|
|
|
|
MODULE_INFO(depends, "");
|
|
|
|
MODULE_ALIAS("acpi*:APP0002:*");
|