power: supply: axp288_charger: Move init_hw_regs call before supply registration
Move the charger_init_hw_regs() above the power_supply_register call, the axp288_charger_usb_set_property() uses axp288_chrg_info.max_cv and .max_cc which get set by charger_init_hw_regs(). Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Sebastian Reichel <sre@kernel.org>
This commit is contained in:
parent
42e2008a66
commit
d96e07350a
|
@ -836,6 +836,10 @@ static int axp288_charger_probe(struct platform_device *pdev)
|
|||
platform_set_drvdata(pdev, info);
|
||||
mutex_init(&info->lock);
|
||||
|
||||
ret = charger_init_hw_regs(info);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
/* Register with power supply class */
|
||||
charger_cfg.drv_data = info;
|
||||
info->psy_usb = devm_power_supply_register(dev, &axp288_charger_desc,
|
||||
|
@ -890,10 +894,6 @@ static int axp288_charger_probe(struct platform_device *pdev)
|
|||
}
|
||||
}
|
||||
|
||||
ret = charger_init_hw_regs(info);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue