98 lines
2.9 KiB
C
98 lines
2.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") = {
|
|
{ 0x9fd597ad, "pci_release_regions" },
|
|
{ 0x3a693bea, "pci_disable_device" },
|
|
{ 0x5b94ad75, "kmalloc_caches" },
|
|
{ 0xc9e41d2d, "kmalloc_node_trace" },
|
|
{ 0xd24c8f20, "pci_enable_device" },
|
|
{ 0xcbd67b94, "pci_request_regions" },
|
|
{ 0xcf8ee05c, "pci_set_master" },
|
|
{ 0x15b6efa7, "dma_set_mask" },
|
|
{ 0x108e19cb, "dma_set_coherent_mask" },
|
|
{ 0x512baed0, "pci_iomap" },
|
|
{ 0xffeedf6a, "delayed_work_timer_fn" },
|
|
{ 0xc6f46339, "init_timer_key" },
|
|
{ 0xd4f909f4, "pci_enable_msix_range" },
|
|
{ 0x92d5838e, "request_threaded_irq" },
|
|
{ 0xd2d4304e, "pci_enable_msi" },
|
|
{ 0x9f46ced8, "__sw_hweight64" },
|
|
{ 0x9ae47436, "_find_last_bit" },
|
|
{ 0x7f192ea, "debugfs_create_file" },
|
|
{ 0x428c2fb, "ntb_register_device" },
|
|
{ 0x9040242d, "_dev_err" },
|
|
{ 0xb024ade4, "_dev_warn" },
|
|
{ 0xeb233a45, "__kmalloc" },
|
|
{ 0x96848186, "scnprintf" },
|
|
{ 0x619cb7dd, "simple_read_from_buffer" },
|
|
{ 0xad1d1bd2, "simple_open" },
|
|
{ 0xbdfb6dbb, "__fentry__" },
|
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
|
{ 0x34db050b, "_raw_spin_lock_irqsave" },
|
|
{ 0xd35cce70, "_raw_spin_unlock_irqrestore" },
|
|
{ 0x122c3a7e, "_printk" },
|
|
{ 0x716265c7, "debugfs_initialized" },
|
|
{ 0xc9c41e74, "__pci_register_driver" },
|
|
{ 0x4db7c870, "debugfs_create_dir" },
|
|
{ 0xc1514a3b, "free_irq" },
|
|
{ 0x6b1aacb8, "pci_disable_msix" },
|
|
{ 0x37a0cba, "kfree" },
|
|
{ 0x8da4c5a2, "pci_disable_msi" },
|
|
{ 0x216da187, "pci_intx" },
|
|
{ 0x4ddf0d50, "__dynamic_dev_dbg" },
|
|
{ 0x8410b88b, "pci_unregister_driver" },
|
|
{ 0xfedf6463, "debugfs_remove" },
|
|
{ 0xf86bb4f0, "ntb_db_event" },
|
|
{ 0xa8d1337e, "_dev_info" },
|
|
{ 0x65487097, "__x86_indirect_thunk_rax" },
|
|
{ 0xe0173e24, "ntb_link_event" },
|
|
{ 0x2d3385d3, "system_wq" },
|
|
{ 0xb2fcb56d, "queue_delayed_work_on" },
|
|
{ 0x2c045f46, "pcie_capability_read_dword" },
|
|
{ 0x1d0defaf, "ntb_unregister_device" },
|
|
{ 0x9fa7184a, "cancel_delayed_work_sync" },
|
|
{ 0x7d75e1ff, "pci_iounmap" },
|
|
{ 0xedf2ec42, "pci_clear_master" },
|
|
{ 0x7098e516, "module_layout" },
|
|
};
|
|
|
|
MODULE_INFO(depends, "ntb");
|
|
|
|
MODULE_ALIAS("pci:v00001022d0000145Bsv*sd*bc*sc*i*");
|
|
MODULE_ALIAS("pci:v00001022d0000148Bsv*sd*bc*sc*i*");
|
|
MODULE_ALIAS("pci:v00001022d000014C0sv*sd*bc*sc*i*");
|
|
MODULE_ALIAS("pci:v00001022d000014C3sv*sd*bc*sc*i*");
|
|
MODULE_ALIAS("pci:v00001D94d0000145Bsv*sd*bc*sc*i*");
|
|
|
|
MODULE_INFO(srcversion, "B4F8E0D3C5EE129F5602024");
|