Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 337016
b: refs/heads/master
c: 5f7e222
h: refs/heads/master
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Nov 26, 2012
1 parent c54d624 commit 611fb3e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 44f34fd4a7f80439f14bdd2df032b0b4427c4ab0
refs/heads/master: 5f7e22283cec597e532b75d5a455ce6ed75de362
2 changes: 1 addition & 1 deletion trunk/drivers/extcon/extcon-adc-jack.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ static int adc_jack_remove(struct platform_device *pdev)

static struct platform_driver adc_jack_driver = {
.probe = adc_jack_probe,
.remove = __devexit_p(adc_jack_remove),
.remove = adc_jack_remove,
.driver = {
.name = "adc-jack",
.owner = THIS_MODULE,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/extcon/extcon-arizona.c
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ static struct platform_driver arizona_extcon_driver = {
.owner = THIS_MODULE,
},
.probe = arizona_extcon_probe,
.remove = __devexit_p(arizona_extcon_remove),
.remove = arizona_extcon_remove,
};

module_platform_driver(arizona_extcon_driver);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/extcon/extcon-gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ static int gpio_extcon_remove(struct platform_device *pdev)

static struct platform_driver gpio_extcon_driver = {
.probe = gpio_extcon_probe,
.remove = __devexit_p(gpio_extcon_remove),
.remove = gpio_extcon_remove,
.driver = {
.name = "extcon-gpio",
.owner = THIS_MODULE,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/extcon/extcon-max77693.c
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ static struct platform_driver max77693_muic_driver = {
.owner = THIS_MODULE,
},
.probe = max77693_muic_probe,
.remove = __devexit_p(max77693_muic_remove),
.remove = max77693_muic_remove,
};

module_platform_driver(max77693_muic_driver);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/extcon/extcon-max8997.c
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ static struct platform_driver max8997_muic_driver = {
.owner = THIS_MODULE,
},
.probe = max8997_muic_probe,
.remove = __devexit_p(max8997_muic_remove),
.remove = max8997_muic_remove,
};

module_platform_driver(max8997_muic_driver);
Expand Down

0 comments on commit 611fb3e

Please sign in to comment.