Skip to content

Commit

Permalink
ab8500-charger: Trivial coding style changes
Browse files Browse the repository at this point in the history
Enforce the white space character after 'if'.

Signed-off-by: Lee Jones <lee.jones@linaro.org>
  • Loading branch information
Lee Jones committed Mar 7, 2013
1 parent 0f4aa40 commit 72a90dd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions drivers/power/ab8500_charger.c
Original file line number Diff line number Diff line change
Expand Up @@ -3152,10 +3152,10 @@ static int ab8500_charger_remove(struct platform_device *pdev)
destroy_workqueue(di->charger_wq);

flush_scheduled_work();
if(di->usb_chg.enabled)
if (di->usb_chg.enabled)
power_supply_unregister(&di->usb_chg.psy);
#if !defined(CONFIG_CHARGER_PM2301)
if(di->ac_chg.enabled)
if (di->ac_chg.enabled)
power_supply_unregister(&di->ac_chg.psy);
#endif
platform_set_drvdata(pdev, NULL);
Expand Down Expand Up @@ -3331,7 +3331,7 @@ static int ab8500_charger_probe(struct platform_device *pdev)
}

/* Register AC charger class */
if(di->ac_chg.enabled) {
if (di->ac_chg.enabled) {
ret = power_supply_register(di->dev, &di->ac_chg.psy);
if (ret) {
dev_err(di->dev, "failed to register AC charger\n");
Expand All @@ -3340,7 +3340,7 @@ static int ab8500_charger_probe(struct platform_device *pdev)
}

/* Register USB charger class */
if(di->usb_chg.enabled) {
if (di->usb_chg.enabled) {
ret = power_supply_register(di->dev, &di->usb_chg.psy);
if (ret) {
dev_err(di->dev, "failed to register USB charger\n");
Expand Down Expand Up @@ -3425,10 +3425,10 @@ static int ab8500_charger_probe(struct platform_device *pdev)
put_usb_phy:
usb_put_phy(di->usb_phy);
free_usb:
if(di->usb_chg.enabled)
if (di->usb_chg.enabled)
power_supply_unregister(&di->usb_chg.psy);
free_ac:
if(di->ac_chg.enabled)
if (di->ac_chg.enabled)
power_supply_unregister(&di->ac_chg.psy);
free_charger_wq:
destroy_workqueue(di->charger_wq);
Expand Down

0 comments on commit 72a90dd

Please sign in to comment.