linux-zen-desktop/drivers/virtio/virtio_mmio.mod.c

75 lines
2.1 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") = {
{ 0x2031a0ec, "devm_kfree" },
{ 0x2d97b4db, "platform_driver_unregister" },
{ 0x92d5838e, "request_threaded_irq" },
{ 0x5b94ad75, "kmalloc_caches" },
{ 0xac4a1f46, "kmalloc_trace" },
{ 0xf0306993, "vring_create_virtqueue" },
{ 0xae2fa9a1, "virtqueue_get_vring_size" },
{ 0x7b25ecb8, "virtqueue_get_desc_addr" },
{ 0x208258f8, "virtqueue_get_avail_addr" },
{ 0x327d519e, "virtqueue_get_used_addr" },
{ 0x5bc8ba21, "devm_kmalloc" },
{ 0xb47c6d1e, "devm_platform_ioremap_resource" },
{ 0x15b6efa7, "dma_set_mask" },
{ 0xb024ade4, "_dev_warn" },
{ 0xcac73be9, "register_virtio_device" },
{ 0xb5686f70, "put_device" },
{ 0x108e19cb, "dma_set_coherent_mask" },
{ 0xbdfb6dbb, "__fentry__" },
{ 0x5b8239ca, "__x86_return_thunk" },
{ 0x2f5507b8, "__platform_driver_register" },
{ 0xe62f1c66, "unregister_virtio_device" },
{ 0xfeefa299, "vring_transport_features" },
{ 0x9040242d, "_dev_err" },
{ 0x5248c8a2, "platform_get_irq" },
{ 0xe523ad75, "synchronize_irq" },
{ 0x860ee7d9, "vring_del_virtqueue" },
{ 0x37a0cba, "kfree" },
{ 0x34db050b, "_raw_spin_lock_irqsave" },
{ 0xd35cce70, "_raw_spin_unlock_irqrestore" },
{ 0xc1514a3b, "free_irq" },
{ 0xff05fa13, "vring_interrupt" },
{ 0xedbbf01b, "virtio_config_changed" },
{ 0xa78af5f3, "ioread32" },
{ 0x7098e516, "module_layout" },
};
MODULE_INFO(depends, "");
MODULE_ALIAS("acpi*:LNRO0005:*");
MODULE_ALIAS("of:N*T*Cvirtio,mmio");
MODULE_ALIAS("of:N*T*Cvirtio,mmioC*");