#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" },
	{ 0xdf7a4c69, "__ubsan_handle_cfi_check_fail_abort" },
	{ 0xca9e8c86, "unregister_rpmsg_driver" },
	{ 0x3fbd4070, "qrtr_print_wakeup_reason" },
	{ 0x943635f9, "qcom_glink_is_wakeup" },
	{ 0xfa4bc742, "qrtr_endpoint_post" },
	{ 0x1d24c881, "___ratelimit" },
	{ 0x1f142134, "qrtr_endpoint_unregister" },
	{ 0xa3a83f8c, "of_property_read_variable_u32_array" },
	{ 0xeb233a45, "__kmalloc" },
	{ 0x1ff61c30, "of_property_count_elems_of_size" },
	{ 0xba82ac8f, "of_find_property" },
	{ 0xa76ece10, "__pskb_pull_tail" },
	{ 0x58d56222, "consume_skb" },
	{ 0x3387eaf7, "kfree_skb" },
	{ 0xcc4c51d, "rpmsg_send" },
	{ 0x8dbcad91, "devm_kmalloc" },
	{ 0x92997ed8, "_printk" },
	{ 0xfb83a2a6, "_dev_err" },
	{ 0x37a0cba, "kfree" },
	{ 0x2c320ee8, "qrtr_endpoint_register" },
	{ 0x3f639c10, "__register_rpmsg_driver" },
};

MODULE_INFO(depends, "qrtr,qcom_glink");


MODULE_INFO(scmversion, "gf957779e27df");
