Hi Alan, On 11/9/2010 8:31 PM, Alan Stern wrote: > On Tue, 9 Nov 2010, Viresh Kumar wrote: > > >> From: Deepak Sikri <deepak.sikri@xxxxxx> >> >> This patch adds support for ehci and ohci controller in the SPEAr platform >> >> Signed-off-by: Deepak Sikri <deepak.sikri@xxxxxx> >> Signed-off-by: Viresh Kumar <viresh.kumar@xxxxxx> >> > >> --- /dev/null >> +++ b/drivers/usb/host/ehci-spear.c >> > >> +static const struct hc_driver ehci_spear_hc_driver = { >> + .description = hcd_name, >> + .product_desc = "SPEAr EHCI", >> + .hcd_priv_size = sizeof(struct spear_ehci), >> + >> + /* generic hardware linkage */ >> + .irq = ehci_irq, >> + .flags = HCD_MEMORY | HCD_USB2, >> + >> + /* basic lifecycle operations */ >> + .reset = ehci_spear_setup, >> + .start = ehci_run, >> + .stop = ehci_stop, >> + .shutdown = ehci_shutdown, >> + >> + /* managing i/o requests and associated device resources */ >> + .urb_enqueue = ehci_urb_enqueue, >> + .urb_dequeue = ehci_urb_dequeue, >> + .endpoint_disable = ehci_endpoint_disable, >> + .endpoint_reset = ehci_endpoint_reset, >> + >> + /* scheduling support */ >> + .get_frame_number = ehci_get_frame, >> + >> + /* root hub support */ >> + .hub_status_data = ehci_hub_status_data, >> + .hub_control = ehci_hub_control, >> + .bus_suspend = ehci_bus_suspend, >> + .bus_resume = ehci_bus_resume, >> + .relinquish_port = ehci_relinquish_port, >> + .port_handed_over = ehci_port_handed_over, >> +}; >> > What happened to the .clear_tt_buffer_complete member? > > Missed on that point. I will add the same. Regards Deepak > Alan Stern > > . > > -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html