Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 342010
b: refs/heads/master
c: 9e2b29d
h: refs/heads/master
v: v3
  • Loading branch information
Bill Pemberton authored and John W. Linville committed Dec 6, 2012
1 parent 71c0e10 commit bcca992
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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: bde327eff8a722df1198df9b14464f84f1adfb65
refs/heads/master: 9e2b29d0d6ae05fb1ead7df68a209eece9c7749a
2 changes: 1 addition & 1 deletion trunk/net/rfkill/rfkill-gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ static int rfkill_gpio_remove(struct platform_device *pdev)

static struct platform_driver rfkill_gpio_driver = {
.probe = rfkill_gpio_probe,
.remove = __devexit_p(rfkill_gpio_remove),
.remove = rfkill_gpio_remove,
.driver = {
.name = "rfkill_gpio",
.owner = THIS_MODULE,
Expand Down
6 changes: 3 additions & 3 deletions trunk/net/rfkill/rfkill-regulator.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ struct rfkill_ops rfkill_regulator_ops = {
.set_block = rfkill_regulator_set_block,
};

static int __devinit rfkill_regulator_probe(struct platform_device *pdev)
static int rfkill_regulator_probe(struct platform_device *pdev)
{
struct rfkill_regulator_platform_data *pdata = pdev->dev.platform_data;
struct rfkill_regulator_data *rfkill_data;
Expand Down Expand Up @@ -122,7 +122,7 @@ static int __devinit rfkill_regulator_probe(struct platform_device *pdev)
return ret;
}

static int __devexit rfkill_regulator_remove(struct platform_device *pdev)
static int rfkill_regulator_remove(struct platform_device *pdev)
{
struct rfkill_regulator_data *rfkill_data = platform_get_drvdata(pdev);
struct rfkill *rf_kill = rfkill_data->rf_kill;
Expand All @@ -137,7 +137,7 @@ static int __devexit rfkill_regulator_remove(struct platform_device *pdev)

static struct platform_driver rfkill_regulator_driver = {
.probe = rfkill_regulator_probe,
.remove = __devexit_p(rfkill_regulator_remove),
.remove = rfkill_regulator_remove,
.driver = {
.name = "rfkill-regulator",
.owner = THIS_MODULE,
Expand Down

0 comments on commit bcca992

Please sign in to comment.