81 lines
2.2 KiB
C
81 lines
2.2 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") = {
|
||
|
{ 0x6a86bc1, "iowrite16" },
|
||
|
{ 0x35c1b2aa, "pci_iomap_range" },
|
||
|
{ 0x384f1975, "dma_alloc_attrs" },
|
||
|
{ 0xfb578fc5, "memset" },
|
||
|
{ 0x512baed0, "pci_iomap" },
|
||
|
{ 0xc3969aad, "pci_irq_vector" },
|
||
|
{ 0x92d5838e, "request_threaded_irq" },
|
||
|
{ 0x428c2fb, "ntb_register_device" },
|
||
|
{ 0x69aea3a6, "param_ops_bool" },
|
||
|
{ 0x337f2264, "param_ops_ulong" },
|
||
|
{ 0xbdfb6dbb, "__fentry__" },
|
||
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
||
|
{ 0x3bc6ab10, "switchtec_class" },
|
||
|
{ 0xfa08a4d7, "class_interface_register" },
|
||
|
{ 0x2d3385d3, "system_wq" },
|
||
|
{ 0xc5b6f236, "queue_work_on" },
|
||
|
{ 0xfe052363, "ioread64_lo_hi" },
|
||
|
{ 0x4a453f53, "iowrite32" },
|
||
|
{ 0x34db050b, "_raw_spin_lock_irqsave" },
|
||
|
{ 0xd21c5139, "iowrite64_lo_hi" },
|
||
|
{ 0xd35cce70, "_raw_spin_unlock_irqrestore" },
|
||
|
{ 0x848d372e, "iowrite8" },
|
||
|
{ 0x4ddf0d50, "__dynamic_dev_dbg" },
|
||
|
{ 0xf86bb4f0, "ntb_db_event" },
|
||
|
{ 0xc3cfc2fd, "class_interface_unregister" },
|
||
|
{ 0xa78af5f3, "ioread32" },
|
||
|
{ 0xe0173e24, "ntb_link_event" },
|
||
|
{ 0xa8d1337e, "_dev_info" },
|
||
|
{ 0xb19b445, "ioread8" },
|
||
|
{ 0x1d0defaf, "ntb_unregister_device" },
|
||
|
{ 0xc1514a3b, "free_irq" },
|
||
|
{ 0x7d75e1ff, "pci_iounmap" },
|
||
|
{ 0xefb2a051, "dma_free_attrs" },
|
||
|
{ 0x37a0cba, "kfree" },
|
||
|
{ 0xcc5005fe, "msleep_interruptible" },
|
||
|
{ 0x9040242d, "_dev_err" },
|
||
|
{ 0x1cfba015, "stackleak_track_stack" },
|
||
|
{ 0x5b94ad75, "kmalloc_caches" },
|
||
|
{ 0xc9e41d2d, "kmalloc_node_trace" },
|
||
|
{ 0x842c8e9d, "ioread16" },
|
||
|
{ 0x7098e516, "module_layout" },
|
||
|
};
|
||
|
|
||
|
MODULE_INFO(depends, "ntb,switchtec");
|
||
|
|
||
|
|
||
|
MODULE_INFO(srcversion, "EAD46842FF1499E089FB421");
|