Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 235406
b: refs/heads/master
c: 0dfeefb
h: refs/heads/master
v: v3
  • Loading branch information
Hubert Feurstein authored and Greg Kroah-Hartman committed Mar 11, 2011
1 parent 573b2f6 commit 5bbf135
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: b88ccf6f97ceb3f34cecbb513edc58815707187d
refs/heads/master: 0dfeefbc93e38c3a9bd6d4e579cc5a76d3f13dc2
6 changes: 3 additions & 3 deletions trunk/drivers/usb/host/ehci-atmel.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ static const struct hc_driver ehci_atmel_hc_driver = {
.clear_tt_buffer_complete = ehci_clear_tt_buffer_complete,
};

static int __init ehci_atmel_drv_probe(struct platform_device *pdev)
static int __devinit ehci_atmel_drv_probe(struct platform_device *pdev)
{
struct usb_hcd *hcd;
const struct hc_driver *driver = &ehci_atmel_hc_driver;
Expand Down Expand Up @@ -207,7 +207,7 @@ static int __init ehci_atmel_drv_probe(struct platform_device *pdev)
return retval;
}

static int __exit ehci_atmel_drv_remove(struct platform_device *pdev)
static int __devexit ehci_atmel_drv_remove(struct platform_device *pdev)
{
struct usb_hcd *hcd = platform_get_drvdata(pdev);

Expand All @@ -227,7 +227,7 @@ static int __exit ehci_atmel_drv_remove(struct platform_device *pdev)

static struct platform_driver ehci_atmel_driver = {
.probe = ehci_atmel_drv_probe,
.remove = __exit_p(ehci_atmel_drv_remove),
.remove = __devexit_p(ehci_atmel_drv_remove),
.shutdown = usb_hcd_platform_shutdown,
.driver.name = "atmel-ehci",
};

0 comments on commit 5bbf135

Please sign in to comment.