#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,
};

MODULE_INFO(intree, "Y");

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

static const struct modversion_info ____versions[]
__used __section("__versions") = {
	{ 0x222dd63, "module_layout" },
	{ 0xc2c193d2, "__stack_chk_fail" },
	{ 0x280f9f14, "__per_cpu_offset" },
	{ 0x17de3d5, "nr_cpu_ids" },
	{ 0xde7ece30, "__cpu_possible_mask" },
	{ 0xdf7a4c69, "__ubsan_handle_cfi_check_fail_abort" },
	{ 0xb68b66dd, "platform_driver_unregister" },
	{ 0xd35cce70, "_raw_spin_unlock_irqrestore" },
	{ 0xb43f9365, "ktime_get" },
	{ 0x34db050b, "_raw_spin_lock_irqsave" },
	{ 0x461806e7, "log_post_read_mmio" },
	{ 0x630c7ed8, "log_read_mmio" },
	{ 0x82bdaa44, "log_post_write_mmio" },
	{ 0xb03b751c, "log_write_mmio" },
	{ 0xb5b54b34, "_raw_spin_unlock" },
	{ 0xba8fbd64, "_raw_spin_lock" },
	{ 0x8dbcad91, "devm_kmalloc" },
	{ 0x6aefebc3, "_dev_info" },
	{ 0x6228c21f, "smp_call_function_single" },
	{ 0x3de09123, "cpumask_next" },
	{ 0xf7b11eb8, "perf_pmu_register" },
	{ 0x30516c87, "devm_ioremap_resource" },
	{ 0xa3fc462a, "platform_get_resource_byname" },
	{ 0x92997ed8, "_printk" },
	{ 0x14d7a873, "of_device_get_match_data" },
	{ 0xfb83a2a6, "_dev_err" },
	{ 0xfc45e713, "__platform_driver_register" },
};

MODULE_INFO(depends, "");


MODULE_INFO(scmversion, "gf957779e27df");
