#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" },
	{ 0xdf7a4c69, "__ubsan_handle_cfi_check_fail_abort" },
	{ 0xb68b66dd, "platform_driver_unregister" },
	{ 0x7725a34d, "regmap_update_bits_base" },
	{ 0xa3a83f8c, "of_property_read_variable_u32_array" },
	{ 0x8dbcad91, "devm_kmalloc" },
	{ 0xe74e115b, "devm_of_platform_populate" },
	{ 0xf49059ac, "devm_reboot_mode_register" },
	{ 0x14d7a873, "of_device_get_match_data" },
	{ 0xfb83a2a6, "_dev_err" },
	{ 0xeed7d9a5, "dev_get_regmap" },
	{ 0xfc45e713, "__platform_driver_register" },
};

MODULE_INFO(depends, "reboot-mode");

MODULE_ALIAS("of:N*T*Cqcom,pm8916-pon");
MODULE_ALIAS("of:N*T*Cqcom,pm8916-ponC*");
MODULE_ALIAS("of:N*T*Cqcom,pms405-pon");
MODULE_ALIAS("of:N*T*Cqcom,pms405-ponC*");
MODULE_ALIAS("of:N*T*Cqcom,pm8998-pon");
MODULE_ALIAS("of:N*T*Cqcom,pm8998-ponC*");

MODULE_INFO(scmversion, "gf957779e27df");
