#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" },
	{ 0xea0fd5fe, "kmalloc_caches" },
	{ 0x4b0a3f52, "gic_nonsecure_priorities" },
	{ 0x77c1b75a, "cpu_hwcaps" },
	{ 0xd14fef22, "cpu_hwcap_keys" },
	{ 0x14b89635, "arm64_const_caps_ready" },
	{ 0xdf7a4c69, "__ubsan_handle_cfi_check_fail_abort" },
	{ 0x483b685d, "mhi_driver_unregister" },
	{ 0xb1bcb648, "mhi_prepare_for_transfer" },
	{ 0x6c0568bc, "mhi_notify" },
	{ 0x534acb54, "mhi_get_device_for_channel" },
	{ 0xa6257a2f, "complete" },
	{ 0x6fdbaa2a, "ipc_log_context_create" },
	{ 0x608741b5, "__init_swait_queue_head" },
	{ 0x95630109, "__mhi_driver_register" },
	{ 0x4b750f53, "_raw_spin_unlock_irq" },
	{ 0x8427cc7b, "_raw_spin_lock_irq" },
	{ 0x7f02188f, "__msecs_to_jiffies" },
	{ 0x5239aaef, "kmem_cache_alloc_trace" },
	{ 0x37a0cba, "kfree" },
	{ 0x4a3ad70e, "wait_for_completion_timeout" },
	{ 0x15c6c196, "mhi_queue_buf" },
	{ 0x8b83a1e8, "ipc_log_string" },
	{ 0xfb83a2a6, "_dev_err" },
};

MODULE_INFO(depends, "mhi,qcom_ipc_logging");


MODULE_INFO(scmversion, "gf957779e27df");
