#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" },
	{ 0xdf7a4c69, "__ubsan_handle_cfi_check_fail_abort" },
	{ 0xe5aaaab6, "proc_remove" },
	{ 0xd35cce70, "_raw_spin_unlock_irqrestore" },
	{ 0x1e42c653, "seq_printf" },
	{ 0xb43f9365, "ktime_get" },
	{ 0x34db050b, "_raw_spin_lock_irqsave" },
	{ 0x24ad11db, "wakeup_sources_read_unlock" },
	{ 0xb58c8204, "wakeup_sources_walk_next" },
	{ 0xb219bd8e, "wakeup_sources_walk_start" },
	{ 0xc2692173, "wakeup_sources_read_lock" },
	{ 0xf53068cd, "seq_puts" },
	{ 0x654cc221, "proc_create_seq_private" },
};

MODULE_INFO(depends, "");


MODULE_INFO(scmversion, "g6cc9bfcd5850");
