On Tue, 18 Oct 2005, Conio sandiago wrote: > Hello everyone > I had developed a OHCI driver on linux kernel 2.6.9.x > > now i am porting the driver to linux kernel 2.6.10.x. > > But i am facing some compilation errors in the following functions call. > > hc_reset (ohci) > hc_start (ohci) > > These two functions are not present in 2.6.10.x kernel. > So i commented these two lines of code, > > Now the drivers are registered correctly . but when i insert a usb 1.1 > device, Nothing happens as host controller is not started because i > have commented out hc_start function, now i want to know which > function in 2.6.10 kernel supports this functionality.
It's called ohci_run. You should have been able to find it yourself with a simple "grep", or just by looking at the source code for one of the other OHCI drivers. Alan Stern ------------------------------------------------------- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl _______________________________________________ [email protected] To unsubscribe, use the last form field at: https://lists.sourceforge.net/lists/listinfo/linux-usb-devel
