Skip to content

Commit

Permalink
power_supply: charger-manager: Add parent for power supply
Browse files Browse the repository at this point in the history
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: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
  • Loading branch information
Krzysztof Kozlowski authored and Sebastian Reichel committed May 23, 2015
1 parent a9f6a19 commit 4970d83
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/power/charger-manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -1768,7 +1768,8 @@ static int charger_manager_probe(struct platform_device *pdev)

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);
if (IS_ERR(cm->charger_psy)) {
dev_err(&pdev->dev, "Cannot register charger-manager with name \"%s\"\n",
Expand Down

0 comments on commit 4970d83

Please sign in to comment.