#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" },
	{ 0x4829a47e, "memcpy" },
	{ 0xea0fd5fe, "kmalloc_caches" },
	{ 0xdf7a4c69, "__ubsan_handle_cfi_check_fail_abort" },
	{ 0xb68b66dd, "platform_driver_unregister" },
	{ 0xc63c3646, "snd_soc_jack_report" },
	{ 0x4f5e01bd, "snd_pcm_fill_iec958_consumer" },
	{ 0xe56a9336, "snd_pcm_format_width" },
	{ 0xb14ab1ef, "hdmi_audio_infoframe_init" },
	{ 0x5c407196, "snd_pcm_fill_iec958_consumer_hw_params" },
	{ 0x389a5705, "snd_pcm_hw_constraint_eld" },
	{ 0xed55cabd, "mutex_unlock" },
	{ 0xd5977bfb, "mutex_lock" },
	{ 0x4411a445, "__cfi_slowpath_diag" },
	{ 0xd9415199, "snd_ctl_add" },
	{ 0xb40d3648, "snd_ctl_new1" },
	{ 0x1fe8c9a9, "snd_pcm_add_chmap_ctls" },
	{ 0x37a0cba, "kfree" },
	{ 0x5239aaef, "kmem_cache_alloc_trace" },
	{ 0x78b5a5b0, "snd_soc_dapm_add_routes" },
	{ 0x8dbcad91, "devm_kmalloc" },
	{ 0xf7560d7c, "devm_snd_soc_register_component" },
	{ 0x649892e8, "snd_pcm_create_iec958_consumer_default" },
	{ 0xa571f6b0, "__mutex_init" },
	{ 0xfb83a2a6, "_dev_err" },
	{ 0xfc45e713, "__platform_driver_register" },
};

MODULE_INFO(depends, "");


MODULE_INFO(scmversion, "gf957779e27df");
