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

Commit 4970d839 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski Committed by Sebastian Reichel
Browse files

power_supply: charger-manager: Add parent for power supply



The 'parent' argument passed to power_supply_register() is now used to
postpone callbacks to the driver until the driver's probe end.

Pass current device from charger-manager to utilize that. This will move
created power supply from virtual to platform devices.

Signed-off-by: default avatarKrzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: default avatarSebastian Reichel <sre@kernel.org>
parent a9f6a19b
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -1768,7 +1768,8 @@ static int charger_manager_probe(struct platform_device *pdev)


	INIT_DELAYED_WORK(&cm->fullbatt_vchk_work, fullbatt_vchk);
	INIT_DELAYED_WORK(&cm->fullbatt_vchk_work, fullbatt_vchk);


	cm->charger_psy = power_supply_register(NULL, &cm->charger_psy_desc,
	cm->charger_psy = power_supply_register(&pdev->dev,
						&cm->charger_psy_desc,
						&psy_cfg);
						&psy_cfg);
	if (IS_ERR(cm->charger_psy)) {
	if (IS_ERR(cm->charger_psy)) {
		dev_err(&pdev->dev, "Cannot register charger-manager with name \"%s\"\n",
		dev_err(&pdev->dev, "Cannot register charger-manager with name \"%s\"\n",