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: Chanwoo Choi <[email protected]> Acked-by: Myungjoo Ham <[email protected]> Cc: Sebastian Reichel <[email protected]> Cc: Dmitry Eremin-Solenikov <[email protected]> Cc: David Woodhouse <[email protected]> --- drivers/power/charger-manager.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/power/charger-manager.c b/drivers/power/charger-manager.c index a10fb57..4e560f7 100644 --- a/drivers/power/charger-manager.c +++ b/drivers/power/charger-manager.c @@ -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; -- 1.8.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

