Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 167754
b: refs/heads/master
c: 46c529c
h: refs/heads/master
v: v3
  • Loading branch information
Mike Frysinger authored and Linus Torvalds committed Oct 29, 2009
1 parent af6a153 commit 051918a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 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: c68d2b1594548cda7f6dbac6a4d9d30a9b01558c
refs/heads/master: 46c529cf79f6c7b239f83b4997d676dd5b51908c
5 changes: 3 additions & 2 deletions trunk/drivers/gpio/twl4030-gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,8 @@ static int __devinit gpio_twl4030_probe(struct platform_device *pdev)
return ret;
}

static int __devexit gpio_twl4030_remove(struct platform_device *pdev)
/* Cannot use __devexit as gpio_twl4030_probe() calls us */
static int gpio_twl4030_remove(struct platform_device *pdev)
{
struct twl4030_gpio_platform_data *pdata = pdev->dev.platform_data;
int status;
Expand Down Expand Up @@ -493,7 +494,7 @@ static struct platform_driver gpio_twl4030_driver = {
.driver.name = "twl4030_gpio",
.driver.owner = THIS_MODULE,
.probe = gpio_twl4030_probe,
.remove = __devexit_p(gpio_twl4030_remove),
.remove = gpio_twl4030_remove,
};

static int __init gpio_twl4030_init(void)
Expand Down

0 comments on commit 051918a

Please sign in to comment.