72 lines
1.9 KiB
C
72 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") = {
|
|
{ 0xfe990052, "gpio_free" },
|
|
{ 0xe2964344, "__wake_up" },
|
|
{ 0x34db050b, "_raw_spin_lock_irqsave" },
|
|
{ 0xbdfb6dbb, "__fentry__" },
|
|
{ 0x65487097, "__x86_indirect_thunk_rax" },
|
|
{ 0x122c3a7e, "_printk" },
|
|
{ 0x1000e51, "schedule" },
|
|
{ 0x541430dd, "spi_sync" },
|
|
{ 0x92d5838e, "request_threaded_irq" },
|
|
{ 0x174c4bba, "gpiod_direction_output_raw" },
|
|
{ 0xca64e135, "driver_unregister" },
|
|
{ 0xd35cce70, "_raw_spin_unlock_irqrestore" },
|
|
{ 0x732bcb5c, "cw1200_core_release" },
|
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
|
{ 0xaad8c7d6, "default_wake_function" },
|
|
{ 0xd9a5ea54, "__init_waitqueue_head" },
|
|
{ 0xce2840e7, "irq_set_irq_wake" },
|
|
{ 0xdaf4cf0a, "spi_setup" },
|
|
{ 0x8dc5692c, "__spi_register_driver" },
|
|
{ 0x2cf56265, "__dynamic_pr_debug" },
|
|
{ 0xea744284, "gpio_to_desc" },
|
|
{ 0x47229b5c, "gpio_request" },
|
|
{ 0x37110088, "remove_wait_queue" },
|
|
{ 0x1e63e741, "cw1200_irq_handler" },
|
|
{ 0xf9a482f9, "msleep" },
|
|
{ 0xe2c17b5d, "__SCT__might_resched" },
|
|
{ 0xc1514a3b, "free_irq" },
|
|
{ 0xa32e022b, "cw1200_core_probe" },
|
|
{ 0x5bc8ba21, "devm_kmalloc" },
|
|
{ 0x1cfba015, "stackleak_track_stack" },
|
|
{ 0xc9076a8e, "gpiod_set_raw_value" },
|
|
{ 0xe9c322a0, "pcpu_hot" },
|
|
{ 0x4afb2238, "add_wait_queue" },
|
|
{ 0x7098e516, "module_layout" },
|
|
};
|
|
|
|
MODULE_INFO(depends, "cw1200_core");
|
|
|