#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" },
	{ 0x65cafe5c, "param_ops_int" },
	{ 0xdf7a4c69, "__ubsan_handle_cfi_check_fail_abort" },
	{ 0xb68b66dd, "platform_driver_unregister" },
	{ 0x4d788393, "edac_device_handle_ue_count" },
	{ 0x5ec45f46, "edac_device_handle_ce_count" },
	{ 0x92997ed8, "_printk" },
	{ 0xd58b01d7, "regmap_read" },
	{ 0x694339ce, "devm_request_threaded_irq" },
	{ 0x7725a34d, "regmap_update_bits_base" },
	{ 0xd43025f1, "regmap_write" },
	{ 0x6fc31518, "edac_device_free_ctl_info" },
	{ 0x793f83ff, "edac_device_del_device" },
	{ 0x4a109507, "edac_device_add_device" },
	{ 0x6aefebc3, "_dev_info" },
	{ 0x6e3ff83a, "edac_device_alloc_index" },
	{ 0xf27024b5, "edac_device_alloc_ctl_info" },
	{ 0xfc45e713, "__platform_driver_register" },
};

MODULE_INFO(depends, "");


MODULE_INFO(scmversion, "gf957779e27df");
