#include <linux/module.h>
#define INCLUDE_VERMAGIC
#include <linux/build-salt.h>
#include <linux/elfnote-lto.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,
};

#ifdef CONFIG_RETPOLINE
MODULE_INFO(retpoline, "Y");
#endif

static const struct modversion_info ____versions[]
__used __section("__versions") = {
	{ 0x222dd63, "module_layout" },
	{ 0x9688de8b, "memstart_addr" },
	{ 0xdf7a4c69, "__ubsan_handle_cfi_check_fail_abort" },
	{ 0x695f563a, "of_device_is_available" },
	{ 0x99a55dda, "of_find_node_with_property" },
	{ 0x6da467cb, "pfn_is_map_memory" },
	{ 0xd35cce70, "_raw_spin_unlock_irqrestore" },
	{ 0xc8dcc62a, "krealloc" },
	{ 0x37a0cba, "kfree" },
	{ 0x9034a696, "mempool_destroy" },
	{ 0xeb233a45, "__kmalloc" },
	{ 0xe348b38a, "kmem_cache_destroy" },
	{ 0x8a99a016, "mempool_free_slab" },
	{ 0xc972449f, "mempool_alloc_slab" },
	{ 0x1953c958, "mempool_create" },
	{ 0xef61a739, "kmem_cache_create_usercopy" },
	{ 0xa897e3e7, "mempool_free" },
	{ 0x34db050b, "_raw_spin_lock_irqsave" },
	{ 0xc3762aec, "mempool_alloc" },
	{ 0x92997ed8, "_printk" },
};

MODULE_INFO(depends, "");


MODULE_INFO(scmversion, "g6cc9bfcd5850");
