linux-zen-desktop/drivers/vdpa/alibaba/eni_vdpa.mod.c

73 lines
2.0 KiB
C
Raw Normal View History

2023-08-30 17:31:07 +02:00
#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") = {
{ 0xcf8ee05c, "pci_set_master" },
{ 0x5bc8ba21, "devm_kmalloc" },
{ 0xa8c0bfc3, "vdpa_register_device" },
{ 0xb5686f70, "put_device" },
{ 0x7ef5f431, "pci_alloc_irq_vectors" },
{ 0x656e4a6e, "snprintf" },
{ 0xc3969aad, "pci_irq_vector" },
{ 0x52b1e45, "devm_request_threaded_irq" },
{ 0xbdfb6dbb, "__fentry__" },
{ 0x5b8239ca, "__x86_return_thunk" },
{ 0x65487097, "__x86_indirect_thunk_rax" },
{ 0xc9c41e74, "__pci_register_driver" },
{ 0x832ee910, "vdpa_unregister_device" },
{ 0x6d50042e, "vp_legacy_remove" },
{ 0x3f4864ef, "vp_legacy_get_queue_enable" },
{ 0x5f81a8f9, "vp_legacy_get_status" },
{ 0x848d372e, "iowrite8" },
{ 0xb19b445, "ioread8" },
{ 0x6a86bc1, "iowrite16" },
{ 0x9ad948e5, "vp_legacy_get_queue_size" },
{ 0x9040242d, "_dev_err" },
{ 0xac84dfee, "vp_legacy_queue_vector" },
{ 0x45b24304, "devm_free_irq" },
{ 0xe3a8a46b, "vp_legacy_config_vector" },
{ 0x6f2ea6ab, "pci_free_irq_vectors" },
{ 0xf3876872, "vp_legacy_set_status" },
{ 0x2742e4a7, "vp_legacy_set_queue_address" },
{ 0xcc63a62d, "vp_legacy_get_driver_features" },
{ 0x7808ac8f, "vp_legacy_get_features" },
{ 0x8410b88b, "pci_unregister_driver" },
{ 0x46fd3832, "vp_legacy_set_features" },
{ 0x59173, "pcim_enable_device" },
{ 0x93fb5838, "__vdpa_alloc_device" },
{ 0xcc3c9d84, "vp_legacy_probe" },
{ 0x7098e516, "module_layout" },
};
MODULE_INFO(depends, "vdpa");