diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-11-26 16:48:31 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-11-26 16:48:31 +0900 |
commit | 6e9d4476063a820764ec063bf683379c38ea1e18 (patch) | |
tree | 09f64a18d1758b7cd19c2780dcd7c54484f4620b | |
parent | c1e0774d74481fdc3082d2096a99a3aa411a71f1 (diff) | |
download | linux-3.10-6e9d4476063a820764ec063bf683379c38ea1e18.tar.gz linux-3.10-6e9d4476063a820764ec063bf683379c38ea1e18.tar.bz2 linux-3.10-6e9d4476063a820764ec063bf683379c38ea1e18.zip |
usb: ehci-sh: Add missing ehci helpers.
The ehci-sh driver was missing tie-ins for endpoint_reset and
clear_tt_buffer_complete, add them in.
Reported-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r-- | drivers/usb/host/ehci-sh.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/host/ehci-sh.c b/drivers/usb/host/ehci-sh.c index 9d3a29f8ced..595f70f42b5 100644 --- a/drivers/usb/host/ehci-sh.c +++ b/drivers/usb/host/ehci-sh.c @@ -72,6 +72,7 @@ static const struct hc_driver ehci_sh_hc_driver = { .urb_enqueue = ehci_urb_enqueue, .urb_dequeue = ehci_urb_dequeue, .endpoint_disable = ehci_endpoint_disable, + .endpoint_reset = ehci_endpoint_reset, /* * scheduling support @@ -91,6 +92,7 @@ static const struct hc_driver ehci_sh_hc_driver = { .relinquish_port = ehci_relinquish_port, .port_handed_over = ehci_port_handed_over, + .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete, }; static int ehci_hcd_sh_probe(struct platform_device *pdev) |