Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 303932
b: refs/heads/master
c: 0d13eeb
h: refs/heads/master
v: v3
  • Loading branch information
Shinya Kuribayashi authored and Greg Kroah-Hartman committed May 14, 2012
1 parent ce95532 commit ae39b02
Show file tree
Hide file tree
Showing 2 changed files with 3 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: 1b0159bab9f1948856915a6cb1f509fe5d8679df
refs/heads/master: 0d13eebcab76ff8f2b5e479747f66ffbf6c78b57
4 changes: 2 additions & 2 deletions trunk/drivers/usb/otg/gpio_vbus.c
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ static int __init gpio_vbus_probe(struct platform_device *pdev)

return 0;
err_otg:
free_irq(irq, &pdev->dev);
free_irq(irq, pdev);
err_irq:
if (gpio_is_valid(pdata->gpio_pullup))
gpio_free(pdata->gpio_pullup);
Expand All @@ -341,7 +341,7 @@ static int __exit gpio_vbus_remove(struct platform_device *pdev)

usb_set_transceiver(NULL);

free_irq(gpio_to_irq(gpio), &pdev->dev);
free_irq(gpio_to_irq(gpio), pdev);
if (gpio_is_valid(pdata->gpio_pullup))
gpio_free(pdata->gpio_pullup);
gpio_free(gpio);
Expand Down

0 comments on commit ae39b02

Please sign in to comment.