diff options
Diffstat (limited to 'drivers/usb/host')
-rw-r--r-- | drivers/usb/host/ehci-atmel.c | 3 | ||||
-rw-r--r-- | drivers/usb/host/ehci-mxc.c | 3 | ||||
-rw-r--r-- | drivers/usb/host/ehci-w90x900.c | 3 | ||||
-rw-r--r-- | drivers/usb/host/ehci-xilinx-of.c | 1 |
4 files changed, 10 insertions, 0 deletions
diff --git a/drivers/usb/host/ehci-atmel.c b/drivers/usb/host/ehci-atmel.c index 51bd0edf544f..d6a69d514a84 100644 --- a/drivers/usb/host/ehci-atmel.c +++ b/drivers/usb/host/ehci-atmel.c | |||
@@ -99,6 +99,7 @@ static const struct hc_driver ehci_atmel_hc_driver = { | |||
99 | .urb_enqueue = ehci_urb_enqueue, | 99 | .urb_enqueue = ehci_urb_enqueue, |
100 | .urb_dequeue = ehci_urb_dequeue, | 100 | .urb_dequeue = ehci_urb_dequeue, |
101 | .endpoint_disable = ehci_endpoint_disable, | 101 | .endpoint_disable = ehci_endpoint_disable, |
102 | .endpoint_reset = ehci_endpoint_reset, | ||
102 | 103 | ||
103 | /* scheduling support */ | 104 | /* scheduling support */ |
104 | .get_frame_number = ehci_get_frame, | 105 | .get_frame_number = ehci_get_frame, |
@@ -110,6 +111,8 @@ static const struct hc_driver ehci_atmel_hc_driver = { | |||
110 | .bus_resume = ehci_bus_resume, | 111 | .bus_resume = ehci_bus_resume, |
111 | .relinquish_port = ehci_relinquish_port, | 112 | .relinquish_port = ehci_relinquish_port, |
112 | .port_handed_over = ehci_port_handed_over, | 113 | .port_handed_over = ehci_port_handed_over, |
114 | |||
115 | .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete, | ||
113 | }; | 116 | }; |
114 | 117 | ||
115 | static int __init ehci_atmel_drv_probe(struct platform_device *pdev) | 118 | static int __init ehci_atmel_drv_probe(struct platform_device *pdev) |
diff --git a/drivers/usb/host/ehci-mxc.c b/drivers/usb/host/ehci-mxc.c index ac9c4d7c44af..802fcf6f8839 100644 --- a/drivers/usb/host/ehci-mxc.c +++ b/drivers/usb/host/ehci-mxc.c | |||
@@ -92,6 +92,7 @@ static const struct hc_driver ehci_mxc_hc_driver = { | |||
92 | .urb_enqueue = ehci_urb_enqueue, | 92 | .urb_enqueue = ehci_urb_enqueue, |
93 | .urb_dequeue = ehci_urb_dequeue, | 93 | .urb_dequeue = ehci_urb_dequeue, |
94 | .endpoint_disable = ehci_endpoint_disable, | 94 | .endpoint_disable = ehci_endpoint_disable, |
95 | .endpoint_reset = ehci_endpoint_reset, | ||
95 | 96 | ||
96 | /* | 97 | /* |
97 | * scheduling support | 98 | * scheduling support |
@@ -107,6 +108,8 @@ static const struct hc_driver ehci_mxc_hc_driver = { | |||
107 | .bus_resume = ehci_bus_resume, | 108 | .bus_resume = ehci_bus_resume, |
108 | .relinquish_port = ehci_relinquish_port, | 109 | .relinquish_port = ehci_relinquish_port, |
109 | .port_handed_over = ehci_port_handed_over, | 110 | .port_handed_over = ehci_port_handed_over, |
111 | |||
112 | .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete, | ||
110 | }; | 113 | }; |
111 | 114 | ||
112 | static int ehci_mxc_drv_probe(struct platform_device *pdev) | 115 | static int ehci_mxc_drv_probe(struct platform_device *pdev) |
diff --git a/drivers/usb/host/ehci-w90x900.c b/drivers/usb/host/ehci-w90x900.c index cfa21ea20f82..6bc35809a5c6 100644 --- a/drivers/usb/host/ehci-w90x900.c +++ b/drivers/usb/host/ehci-w90x900.c | |||
@@ -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) |
diff --git a/drivers/usb/host/ehci-xilinx-of.c b/drivers/usb/host/ehci-xilinx-of.c index 6c8076ad821d..e8f4f36fdf0b 100644 --- a/drivers/usb/host/ehci-xilinx-of.c +++ b/drivers/usb/host/ehci-xilinx-of.c | |||
@@ -117,6 +117,7 @@ static const struct hc_driver ehci_xilinx_of_hc_driver = { | |||
117 | .urb_enqueue = ehci_urb_enqueue, | 117 | .urb_enqueue = ehci_urb_enqueue, |
118 | .urb_dequeue = ehci_urb_dequeue, | 118 | .urb_dequeue = ehci_urb_dequeue, |
119 | .endpoint_disable = ehci_endpoint_disable, | 119 | .endpoint_disable = ehci_endpoint_disable, |
120 | .endpoint_reset = ehci_endpoint_reset, | ||
120 | 121 | ||
121 | /* | 122 | /* |
122 | * scheduling support | 123 | * scheduling support |