Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 195321
b: refs/heads/master
c: 9757de3
h: refs/heads/master
i:
  195319: d6cac39
v: v3
  • Loading branch information
Manuel Lauss authored and Greg Kroah-Hartman committed May 20, 2010
1 parent 6ae1878 commit 463d0f3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 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: 0ede76fcec5415ef82a423a95120286895822e2d
refs/heads/master: 9757de384451a606af8c722213cb973192cbbd1b
11 changes: 10 additions & 1 deletion trunk/drivers/usb/host/ehci-au1xxx.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,15 @@ static void au1xxx_stop_ehc(void)
au_sync();
}

static int au1xxx_ehci_setup(struct usb_hcd *hcd)
{
struct ehci_hcd *ehci = hcd_to_ehci(hcd);
int ret = ehci_init(hcd);

ehci->need_io_watchdog = 0;
return ret;
}

static const struct hc_driver ehci_au1xxx_hc_driver = {
.description = hcd_name,
.product_desc = "Au1xxx EHCI",
Expand All @@ -86,7 +95,7 @@ static const struct hc_driver ehci_au1xxx_hc_driver = {
* FIXME -- ehci_init() doesn't do enough here.
* See ehci-ppc-soc for a complete implementation.
*/
.reset = ehci_init,
.reset = au1xxx_ehci_setup,
.start = ehci_run,
.stop = ehci_stop,
.shutdown = ehci_shutdown,
Expand Down

0 comments on commit 463d0f3

Please sign in to comment.