#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,
};

#ifdef CONFIG_RETPOLINE
MODULE_INFO(retpoline, "Y");
#endif

static const struct modversion_info ____versions[]
__used __section("__versions") = {
	{ 0x222dd63, "module_layout" },
	{ 0xc2c193d2, "__stack_chk_fail" },
	{ 0x2d3385d3, "system_wq" },
	{ 0xdf7a4c69, "__ubsan_handle_cfi_check_fail_abort" },
	{ 0x6b81c38b, "power_supply_unreg_notifier" },
	{ 0xd969d6f4, "cancel_work_sync" },
	{ 0xbf57e89e, "queue_delayed_work_on" },
	{ 0xda571594, "cancel_delayed_work" },
	{ 0x732ac580, "queue_work_on" },
	{ 0x5a921311, "strncmp" },
	{ 0x136209db, "power_supply_reg_notifier" },
	{ 0xfafc9995, "power_supply_get_by_name" },
	{ 0x253af43d, "delayed_work_timer_fn" },
	{ 0x79cf5987, "init_timer_key" },
	{ 0x96848186, "scnprintf" },
	{ 0x91406f94, "power_supply_get_property" },
	{ 0xc76efd1, "mmi_vote_charging_disable" },
	{ 0xcb0f187b, "mmi_vote_charger_suspend" },
	{ 0x3854774b, "kstrtoll" },
	{ 0x92997ed8, "_printk" },
	{ 0x7ff76189, "param_get_int" },
};

MODULE_INFO(depends, "mmi_charger");


MODULE_INFO(scmversion, "g6cc9bfcd5850");
