summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/usbf.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* simplify kthread_create(). no more stdargderaadt2013-11-181-2/+2
| | | | ok matthew guenther mikeb
* Get rid of various 'typedef struct' definitions and use plain structuremglocker2013-04-151-20/+20
| | | | | | | | | definitions instead. We don't change usb.h for now to stay compatible with userland. Tested by mpi@ on macppc and myself on i386. ok mpi@
* Needs explicit <sys/kthread.h>; fixes build on palm.miod2011-09-271-1/+2
|
* usbdivar.h needs struct timeout. But don't get it indirectly viakrw2011-09-181-2/+2
| | | | | | | sys/kthread.h, use sys/timeout.h explicitly. Noted by Michael Knudsen. ok deraadt@ kettenis@ guenther@
* cleanup ;;deraadt2010-10-281-4/+4
|
* Fix a memory leak in usbf_realloc(), and make the speed configuration arraymiod2008-06-101-7/+16
| | | | dynamically allocated. "commit please" deraadt@
* remove unneeded malloc.h include.fgsch2007-09-171-2/+1
|
* KNF after the recent macro expansion, mostly prototype indendation.mbalmer2007-06-191-13/+12
| | | | | | No binary change. ok uwe.
* Apply some KNF after the recent removal of macros and type definitions.mbalmer2007-06-131-7/+7
| | | | | | No binary change. ok ray.
* Remove the usb_proc_ptr type definition, which was really a 'struct proc *'mbalmer2007-06-111-2/+2
| | | | | | | | only. No binary change. ok mk.
* Remove the definition and use of the USBDEVNAME macro.mbalmer2007-06-101-2/+2
| | | | | | | (This might look easy, but it was a big diff. Thanks to dlg and especially jsg for looking over it; we found at least four mistakes in the initial diff.) ok jsg.
* Mechanical removal of USBBASEDEVICE. No binary change.mk2007-06-061-2/+2
| | | | | | Tested by thib and myself. ok mbalmer jsg
* Some other missed bits.jsg2007-05-271-4/+4
|
* Farewell USB_{ATTACH,MATCH,DETACH}* you will not be missed.jsg2007-05-271-3/+5
| | | | ok deraadt@ krw@ mbalmer@
* Several improvements to the usb client code. Still not working.drahn2007-02-071-2/+2
|
* Initial USB device controller (UDC) and USB CDC Ethernet function supportuwe2006-11-251-0/+698
for PXA27x/Zaurus, not enabled yet; for dlg and dale :)