Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b1022e24 authored by Chanwoo Choi's avatar Chanwoo Choi Committed by Sebastian Reichel
Browse files

power: charger-manager: Check charging state right after completed initialization



This patch check the charging state after completed initialization of charger-
manager and update current charging state. If charger-manager never check and
update current charging state, charger-manager would have the mismatch issue
between real state of cable connection and the charging state of charger-manager
until first polling time of charger-manager.

Signed-off-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
Acked-by: default avatarMyungjoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: default avatarSebastian Reichel <sre@kernel.org>
parent c6738d06
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -1839,6 +1839,13 @@ static int charger_manager_probe(struct platform_device *pdev)
	device_init_wakeup(&pdev->dev, true);
	device_set_wakeup_capable(&pdev->dev, false);

	/*
	 * Charger-manager have to check the charging state right after
	 * tialization of charger-manager and then update current charging
	 * state.
	 */
	cm_monitor();

	schedule_work(&setup_polling);

	return 0;