linux-zen-desktop/drivers/fpga/altera-cvp.mod.c

67 lines
1.8 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") = {
{ 0x79b2b9bd, "pci_read_config_dword" },
{ 0x171c016d, "pci_write_config_dword" },
{ 0x65487097, "__x86_indirect_thunk_rax" },
{ 0x1e95c1d6, "pci_find_next_ext_capability" },
{ 0x5bc8ba21, "devm_kmalloc" },
{ 0xcfc0bcfe, "pci_request_region" },
{ 0x512baed0, "pci_iomap" },
{ 0xf6a60fd0, "fpga_mgr_register" },
{ 0x9040242d, "_dev_err" },
{ 0xb024ade4, "_dev_warn" },
{ 0xb64302f, "driver_remove_file" },
{ 0x8410b88b, "pci_unregister_driver" },
{ 0xc3055d20, "usleep_range_state" },
{ 0x22fa15ce, "pci_read_config_byte" },
{ 0x6383b27c, "__x86_indirect_thunk_rdx" },
{ 0xbdfb6dbb, "__fentry__" },
{ 0x5b8239ca, "__x86_return_thunk" },
{ 0xc9c41e74, "__pci_register_driver" },
{ 0x13c6b46f, "driver_create_file" },
{ 0x122c3a7e, "_printk" },
{ 0x124bad4d, "kstrtobool" },
{ 0x656e4a6e, "snprintf" },
{ 0x7d74f3ad, "fpga_mgr_unregister" },
{ 0x7d75e1ff, "pci_iounmap" },
{ 0x8dba538f, "pci_release_region" },
{ 0xa549196f, "pci_read_config_word" },
{ 0x45c0c680, "pci_write_config_word" },
{ 0x7098e516, "module_layout" },
};
MODULE_INFO(depends, "fpga-mgr");
MODULE_ALIAS("pci:v00001172d*sv*sd*bc*sc*i*");