#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" },
	{ 0xdcb764ad, "memset" },
	{ 0xc2c193d2, "__stack_chk_fail" },
	{ 0x75fb9062, "arch_timer_read_counter" },
	{ 0xaf56600a, "arm64_use_ng_mappings" },
	{ 0xdf7a4c69, "__ubsan_handle_cfi_check_fail_abort" },
	{ 0xb68b66dd, "platform_driver_unregister" },
	{ 0x402e076a, "debugfs_remove" },
	{ 0xf53068cd, "seq_puts" },
	{ 0x5899664c, "qcom_smem_get" },
	{ 0xb97233e8, "of_property_read_string_helper" },
	{ 0x4411a445, "__cfi_slowpath_diag" },
	{ 0x1e42c653, "seq_printf" },
	{ 0x739706ab, "single_open" },
	{ 0x5dc6186, "single_release" },
	{ 0x8d452a34, "seq_read" },
	{ 0x9efacf32, "seq_lseek" },
	{ 0xe2d5255a, "strcmp" },
	{ 0xd2ca564a, "debugfs_create_file" },
	{ 0x77bc13a0, "strim" },
	{ 0xeebe12e4, "debugfs_create_dir" },
	{ 0xba82ac8f, "of_find_property" },
	{ 0xa3a83f8c, "of_property_read_variable_u32_array" },
	{ 0x8dbcad91, "devm_kmalloc" },
	{ 0x1fb4d43d, "mbox_request_channel" },
	{ 0xa571f6b0, "__mutex_init" },
	{ 0x31f4adef, "devm_ioremap" },
	{ 0xedc03953, "iounmap" },
	{ 0x6b4b2933, "__ioremap" },
	{ 0x647bbfd5, "platform_get_resource" },
	{ 0x32068f3, "device_get_match_data" },
	{ 0xfc45e713, "__platform_driver_register" },
	{ 0x461806e7, "log_post_read_mmio" },
	{ 0x630c7ed8, "log_read_mmio" },
	{ 0xeb233a45, "__kmalloc" },
	{ 0x5d112304, "__memcpy_fromio" },
	{ 0xc4f0da12, "ktime_get_with_offset" },
	{ 0x37a0cba, "kfree" },
	{ 0xeae3dfd6, "__const_udelay" },
	{ 0xed55cabd, "mutex_unlock" },
	{ 0x92997ed8, "_printk" },
	{ 0xec55920d, "mbox_send_message" },
	{ 0x96848186, "scnprintf" },
	{ 0xd5977bfb, "mutex_lock" },
};

MODULE_INFO(depends, "smem");


MODULE_INFO(scmversion, "gf957779e27df");
