diff options
Diffstat (limited to 'drivers/usb/host/ehci-w90x900.c')
-rw-r--r-- | drivers/usb/host/ehci-w90x900.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-w90x900.c b/drivers/usb/host/ehci-w90x900.c index cfa21ea20f82..52a027aaa370 100644 --- a/drivers/usb/host/ehci-w90x900.c +++ b/drivers/usb/host/ehci-w90x900.c | |||
@@ -57,7 +57,7 @@ static int __devinit usb_w90x900_probe(const struct hc_driver *driver, | |||
57 | ehci = hcd_to_ehci(hcd); | 57 | ehci = hcd_to_ehci(hcd); |
58 | ehci->caps = hcd->regs; | 58 | ehci->caps = hcd->regs; |
59 | ehci->regs = hcd->regs + | 59 | ehci->regs = hcd->regs + |
60 | HC_LENGTH(ehci_readl(ehci, &ehci->caps->hc_capbase)); | 60 | HC_LENGTH(ehci, ehci_readl(ehci, &ehci->caps->hc_capbase)); |
61 | 61 | ||
62 | /* enable PHY 0,1,the regs only apply to w90p910 | 62 | /* enable PHY 0,1,the regs only apply to w90p910 |
63 | * 0xA4,0xA8 were offsets of PHY0 and PHY1 controller of | 63 | * 0xA4,0xA8 were offsets of PHY0 and PHY1 controller of |
@@ -130,6 +130,7 @@ static const struct hc_driver ehci_w90x900_hc_driver = { | |||
130 | .urb_enqueue = ehci_urb_enqueue, | 130 | .urb_enqueue = ehci_urb_enqueue, |
131 | .urb_dequeue = ehci_urb_dequeue, | 131 | .urb_dequeue = ehci_urb_dequeue, |
132 | .endpoint_disable = ehci_endpoint_disable, | 132 | .endpoint_disable = ehci_endpoint_disable, |
133 | .endpoint_reset = ehci_endpoint_reset, | ||
133 | 134 | ||
134 | /* | 135 | /* |
135 | * scheduling support | 136 | * scheduling support |
@@ -147,6 +148,8 @@ static const struct hc_driver ehci_w90x900_hc_driver = { | |||
147 | #endif | 148 | #endif |
148 | .relinquish_port = ehci_relinquish_port, | 149 | .relinquish_port = ehci_relinquish_port, |
149 | .port_handed_over = ehci_port_handed_over, | 150 | .port_handed_over = ehci_port_handed_over, |
151 | |||
152 | .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete, | ||
150 | }; | 153 | }; |
151 | 154 | ||
152 | static int __devinit ehci_w90x900_probe(struct platform_device *pdev) | 155 | static int __devinit ehci_w90x900_probe(struct platform_device *pdev) |