Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux
The merge is merely to fix conflicts before sending a pull request. Conflicts: drivers/power/ab8500_btemp.c drivers/power/ab8500_charger.c drivers/power/ab8500_fg.c drivers/power/abx500_chargalg.c drivers/power/max8925_power.c Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
This commit is contained in:
@@ -236,7 +236,7 @@ static irqreturn_t gab_charged(int irq, void *dev_id)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static int __devinit gab_probe(struct platform_device *pdev)
|
||||
static int gab_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct gab *adc_bat;
|
||||
struct power_supply *psy;
|
||||
@@ -352,7 +352,7 @@ first_mem_fail:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int __devexit gab_remove(struct platform_device *pdev)
|
||||
static int gab_remove(struct platform_device *pdev)
|
||||
{
|
||||
int chan;
|
||||
struct gab *adc_bat = platform_get_drvdata(pdev);
|
||||
@@ -414,7 +414,7 @@ static struct platform_driver gab_driver = {
|
||||
.pm = GAB_PM_OPS
|
||||
},
|
||||
.probe = gab_probe,
|
||||
.remove = __devexit_p(gab_remove),
|
||||
.remove = gab_remove,
|
||||
};
|
||||
module_platform_driver(gab_driver);
|
||||
|
||||
|
Reference in New Issue
Block a user