cvs commit: src/sys/dev/usb usb_subr.c

2007-06-17 Thread Warner Losh
imp 2007-06-17 07:34:00 UTC FreeBSD src repository Modified files: sys/dev/usb usb_subr.c Log: Expand USB_DO_ATTACH inline. Remove device_t dv, since it is no longer needed. Add sizeof(device_t) to replace sizeof dv. Change device_detach(dev) to device_detach(d

cvs commit: src/sys/dev/usb usb_subr.c

2007-06-09 Thread Matt Jacob
mjacob 2007-06-10 01:28:55 UTC FreeBSD src repository Modified files: sys/dev/usb usb_subr.c Log: Complete an initialization to make gcc 4.2 happy. Revision ChangesPath 1.91 +1 -0 src/sys/dev/usb/usb_subr.c _

cvs commit: src/sys/dev/usb usb_subr.c

2007-05-07 Thread Kevin Lo
kevlo 2007-05-08 03:25:05 UTC FreeBSD src repository Modified files: sys/dev/usb usb_subr.c Log: Do not set address early. It fix problems when SET_ADDR_FAILED happens on the hubs. Reviewed by: imp Revision ChangesPath 1.90 +27 -24src/sys/de

cvs commit: src/sys/dev/usb usb_subr.c

2007-02-03 Thread Warner Losh
imp 2007-02-03 16:38:33 UTC FreeBSD src repository Modified files: sys/dev/usb usb_subr.c Log: Fix possible memory leaks of devinfo. PR: 108719 Submitted by: Antoine Brodin Revision ChangesPath 1.88 +2 -2 src/sys/dev/usb/usb_subr.c __

cvs commit: src/sys/dev/usb usb_subr.c

2006-09-10 Thread Tom Rhodes
trhodes 2006-09-10 15:20:39 UTC FreeBSD src repository Modified files: sys/dev/usb usb_subr.c Log: Yank FreeBSD specific code out from under ifdef. Remove compatibility ifdefs. Reviewed/Ok'ed by: imp Revision ChangesPath 1.86 +0 -127src/s

cvs commit: src/sys/dev/usb usb_subr.c

2006-02-10 Thread Warner Losh
imp 2006-02-11 03:41:20 UTC FreeBSD src repository Modified files: sys/dev/usb usb_subr.c Log: Improve the memory resoruce allocation and usage during the probe. I've had these improvements in my tree for almost a year now... Revision ChangesPath 1.80

cvs commit: src/sys/dev/usb usb_subr.c

2006-01-07 Thread Ian Dowse
iedowse 2006-01-08 03:27:43 UTC FreeBSD src repository Modified files: sys/dev/usb usb_subr.c Log: Don't perform an endpoint stall clear every time a pipe is opened. This should not be necessary, and it is known to confuse certain devices. Obtained from: NetBSD