cvs commit: src/share/man/man4 Makefile aue.4 kue.4 ohci.4
uaudio.4 ucom.4 ugen.4 uhci.4 uhid.4 uhidev.4 ukbd.4 ulpt.4 ums.4
urio.4 usb.4 uvisor.4 src/sys/conf files src/sys/dev/usb FILES
devlist2h.awk hid.c hid.h if_aue.c if_auereg.h if_cue.c ...
Julian Elischer
julian at FreeBSD.org
Sun Feb 29 16:07:27 PST 2004
julian 2004/02/29 16:07:26 PST
FreeBSD src repository
Modified files: (Branch: RELENG_4)
share/man/man4 Makefile aue.4 kue.4 ohci.4 ucom.4 ugen.4
uhci.4 uhid.4 uhidev.4 ukbd.4 ulpt.4
ums.4 urio.4 usb.4 uvisor.4
sys/conf files
sys/dev/usb FILES devlist2h.awk hid.c hid.h if_aue.c
if_auereg.h if_cue.c if_cuereg.h if_kue.c
if_kuereg.h if_rue.c if_ruereg.h kue_fw.h
ohci.c ohcireg.h ohcivar.h ubsa.c ucom.c
ufm.c uftdi.c ugen.c uhci.c uhcireg.h
uhcivar.h uhid.c uhub.c ukbd.c ulpt.c
umodem.c ums.c uplcom.c urio.c usb.c
usb.h usb_ethersubr.c usb_ethersubr.h
usb_mem.h usb_port.h usb_quirks.c
usb_quirks.h usb_subr.c usbcdc.h usbdi.c
usbdi.h usbdi_util.c usbdi_util.h
usbdivar.h usbhid.h uscanner.c uvisor.c
uvscom.c
sys/modules/aue Makefile
sys/modules/cue Makefile
sys/modules/kue Makefile
sys/modules/rue Makefile
sys/modules/ugen Makefile
sys/modules/uhid Makefile
sys/modules/ukbd Makefile
sys/modules/ulpt Makefile
sys/modules/umass Makefile
sys/modules/umodem Makefile
sys/modules/ums Makefile
sys/modules/usb Makefile
sys/modules/uscanner Makefile
sys/pci ohci_pci.c uhci_pci.c
usr.sbin/usbdevs usbdevs.c
Added files: (Branch: RELENG_4)
share/man/man4 uaudio.4
sys/dev/usb ugraphire_rdesc.h usb_mem.c
Log:
After Far too long, MFC something resembling the -current version of the
USB code. This will allow teh addition of USB-2 support to 4.10 and
simplify debugging as they had diverged too much.
Submitted by: joe at freebsd.org
Obtained from: NeBSD via -current
Revision Changes Path
1.83.2.72 +1 -0 src/share/man/man4/Makefile
1.7.2.8 +39 -4 src/share/man/man4/aue.4
1.7.2.9 +32 -4 src/share/man/man4/kue.4
1.8.2.5 +2 -5 src/share/man/man4/ohci.4
1.1.4.1 +96 -0 src/share/man/man4/uaudio.4 (new)
1.2.2.3 +6 -0 src/share/man/man4/ucom.4
1.1.2.3 +40 -37 src/share/man/man4/ugen.4
1.8.2.5 +2 -6 src/share/man/man4/uhci.4
1.1.2.4 +32 -22 src/share/man/man4/uhid.4
1.1.2.3 +7 -4 src/share/man/man4/uhidev.4
1.10.2.11 +1 -11 src/share/man/man4/ukbd.4
1.2.2.4 +2 -1 src/share/man/man4/ulpt.4
1.9.2.8 +2 -5 src/share/man/man4/ums.4
1.5.2.4 +3 -9 src/share/man/man4/urio.4
1.9.2.11 +88 -70 src/share/man/man4/usb.4
1.2.2.3 +9 -4 src/share/man/man4/uvisor.4
1.340.2.150 +1 -1 src/sys/conf/files
1.2.2.2 +14 -2 src/sys/dev/usb/FILES
1.1.2.1 +2 -2 src/sys/dev/usb/devlist2h.awk
1.11.2.7 +20 -17 src/sys/dev/usb/hid.c
1.7.2.4 +5 -5 src/sys/dev/usb/hid.h
1.19.2.20 +355 -345 src/sys/dev/usb/if_aue.c
1.5.2.2 +24 -22 src/sys/dev/usb/if_auereg.h
1.7.2.7 +155 -138 src/sys/dev/usb/if_cue.c
1.5.2.1 +14 -3 src/sys/dev/usb/if_cuereg.h
1.17.2.10 +114 -72 src/sys/dev/usb/if_kue.c
1.5.2.1 +15 -3 src/sys/dev/usb/if_kuereg.h
1.2.2.2 +148 -107 src/sys/dev/usb/if_rue.c
1.1.4.2 +21 -0 src/sys/dev/usb/if_ruereg.h
1.1.2.1 +3 -3 src/sys/dev/usb/kue_fw.h
1.39.2.10 +1151 -478 src/sys/dev/usb/ohci.c
1.13.2.2 +14 -6 src/sys/dev/usb/ohcireg.h
1.15.2.5 +43 -8 src/sys/dev/usb/ohcivar.h
1.2.2.3 +38 -5 src/sys/dev/usb/ubsa.c
1.24.2.6 +21 -23 src/sys/dev/usb/ucom.c
1.1.2.4 +30 -22 src/sys/dev/usb/ufm.c
1.3.2.4 +10 -9 src/sys/dev/usb/uftdi.c
1.38.2.10 +236 -146 src/sys/dev/usb/ugen.c
1.1.8.1 +92 -0 src/sys/dev/usb/ugraphire_rdesc.h (new)
1.40.2.13 +1083 -582 src/sys/dev/usb/uhci.c
1.14.2.2 +16 -6 src/sys/dev/usb/uhcireg.h
1.16.2.6 +35 -23 src/sys/dev/usb/uhcivar.h
1.27.2.13 +81 -51 src/sys/dev/usb/uhid.c
1.21.2.8 +99 -39 src/sys/dev/usb/uhub.c
1.24.2.8 +54 -41 src/sys/dev/usb/ukbd.c
1.26.2.15 +253 -70 src/sys/dev/usb/ulpt.c
1.17.2.11 +402 -803 src/sys/dev/usb/umodem.c
1.36.2.7 +48 -41 src/sys/dev/usb/ums.c
1.8.2.6 +14 -12 src/sys/dev/usb/uplcom.c
1.11.2.5 +52 -69 src/sys/dev/usb/urio.c
1.26.2.10 +344 -146 src/sys/dev/usb/usb.c
1.17.2.12 +17 -21 src/sys/dev/usb/usb.h
1.4.2.5 +6 -7 src/sys/dev/usb/usb_ethersubr.c
1.4.2.2 +0 -4 src/sys/dev/usb/usb_ethersubr.h
1.5.4.1 +308 -0 src/sys/dev/usb/usb_mem.c (new)
1.10.2.3 +13 -36 src/sys/dev/usb/usb_mem.h
1.25.2.8 +194 -61 src/sys/dev/usb/usb_port.h
1.21.2.10 +29 -13 src/sys/dev/usb/usb_quirks.c
1.11.2.7 +5 -4 src/sys/dev/usb/usb_quirks.h
1.23.2.10 +229 -125 src/sys/dev/usb/usb_subr.c
1.7.2.3 +14 -2 src/sys/dev/usb/usbcdc.h
1.34.2.8 +215 -87 src/sys/dev/usb/usbdi.c
1.21.2.4 +111 -98 src/sys/dev/usb/usbdi.h
1.15.2.6 +80 -54 src/sys/dev/usb/usbdi_util.c
1.9.2.3 +40 -49 src/sys/dev/usb/usbdi_util.h
1.14.2.3 +56 -31 src/sys/dev/usb/usbdivar.h
1.7.2.3 +1 -5 src/sys/dev/usb/usbhid.h
1.2.2.19 +33 -27 src/sys/dev/usb/uscanner.c
1.7.2.8 +25 -16 src/sys/dev/usb/uvisor.c
1.9.2.9 +5 -3 src/sys/dev/usb/uvscom.c
1.2.2.1 +8 -7 src/sys/modules/aue/Makefile
1.2.2.1 +8 -6 src/sys/modules/cue/Makefile
1.2.2.1 +8 -6 src/sys/modules/kue/Makefile
1.1.4.2 +7 -6 src/sys/modules/rue/Makefile
1.7.2.1 +6 -6 src/sys/modules/ugen/Makefile
1.7.2.1 +6 -6 src/sys/modules/uhid/Makefile
1.10.2.1 +7 -8 src/sys/modules/ukbd/Makefile
1.7.2.1 +6 -6 src/sys/modules/ulpt/Makefile
1.7.2.2 +8 -8 src/sys/modules/umass/Makefile
1.7.2.1 +6 -6 src/sys/modules/umodem/Makefile
1.7.2.1 +6 -6 src/sys/modules/ums/Makefile
1.7.2.1 +23 -23 src/sys/modules/usb/Makefile
1.1.2.2 +7 -7 src/sys/modules/uscanner/Makefile
1.16.2.6 +15 -4 src/sys/pci/ohci_pci.c
1.26.2.9 +11 -8 src/sys/pci/uhci_pci.c
1.5.2.4 +7 -3 src/usr.sbin/usbdevs/usbdevs.c
More information about the cvs-src
mailing list