Greg Kroah-Hartman e06226e66b Merge tag 'usb-serial-4.8-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial into usb-linus před 9 roky
..
atm 49e8eccf37 Use "foo *bar" instead of "foo * bar". před 9 roky
c67x00 e27465f51a c67x00-hcd: use USB_DT_HUB před 10 roky
chipidea 6f3c4fb6d0 usb: chipidea: udc: fix NULL ptr dereference in isr_setup_status_phase před 9 roky
class add125054b cdc-acm: fix wrong pipe type on rx interrupt xfers před 9 roky
common c318a821b9 Merge 4.7-rc6 into usb-next před 9 roky
core 08c5cd3748 USB: change bInterval default to 10 ms před 9 roky
dwc2 83f8da562f usb: dwc2: Add reset control to dwc2 před 9 roky
dwc3 696118c016 usb: dwc3: pci: fix build warning on !PM_SLEEP před 9 roky
early 4e84e22195 usb: early/ehci-dbgp: make it explicitly non-modular před 9 roky
gadget 3ff488ab60 usb: gadget: prevent potenial null pointer dereference on skb->len před 9 roky
host bcf42aa60c xhci: fix null pointer dereference in stop command timeout function před 9 roky
image 600bb21605 usb: microtek: Use "foo *bar" instead of "foo * bar". před 9 roky
isp1760 2b320d87f3 usb: Remove unnecessary space before open square bracket. před 9 roky
misc 5395875118 usb: misc: usbtest: add fix for driver hang před 9 roky
mon a4b5d606b9 usb: core: rename mutex usb_bus_list_lock to usb_bus_idr_lock před 10 roky
musb ed3d6d0ac0 usb: musb: Fix tusb6010 compile error on blackfin před 9 roky
phy 7c113f7df7 usb: phy: phy-generic: Check clk_prepare_enable() error před 9 roky
renesas_usbhs 519d8bd4b5 usb: renesas_usbhs: fix clearing the {BRDY,BEMP}STS condition před 9 roky
serial f190fd9245 USB: serial: simple: add support for another Infineon flashloader před 9 roky
storage 593224ea77 USB: uas: Fix slave queue_depth not being set před 9 roky
usbip bc71c2df45 Merge 4.7-rc4 into usb-next před 9 roky
wusbcore ef23db9c5e usb: wusbcore: Do not initialise statics to 0. před 9 roky
Kconfig badf6d47f8 usb: common: rework CONFIG_USB_COMMON logic před 9 roky
Makefile d0fc35bc08 usb: fsl: drop USB_FSL_MPH_DR_OF Kconfig symbol před 9 roky
README 37ebb54915 usb: hub: rename khubd to hub_wq in documentation and comments před 11 roky
usb-skeleton.c 803a536243 usb: delete non-required instances of include <linux/init.h> před 12 roky

README

To understand all the Linux-USB framework, you'll use these resources:

* This source code. This is necessarily an evolving work, and
includes kerneldoc that should help you get a current overview.
("make pdfdocs", and then look at "usb.pdf" for host side and
"gadget.pdf" for peripheral side.) Also, Documentation/usb has
more information.

* The USB 2.0 specification (from www.usb.org), with supplements
such as those for USB OTG and the various device classes.
The USB specification has a good overview chapter, and USB
peripherals conform to the widely known "Chapter 9".

* Chip specifications for USB controllers. Examples include
host controllers (on PCs, servers, and more); peripheral
controllers (in devices with Linux firmware, like printers or
cell phones); and hard-wired peripherals like Ethernet adapters.

* Specifications for other protocols implemented by USB peripheral
functions. Some are vendor-specific; others are vendor-neutral
but just standardized outside of the www.usb.org team.

Here is a list of what each subdirectory here is, and what is contained in
them.

core/ - This is for the core USB host code, including the
usbfs files and the hub class driver ("hub_wq").

host/ - This is for USB host controller drivers. This
includes UHCI, OHCI, EHCI, and others that might
be used with more specialized "embedded" systems.

gadget/ - This is for USB peripheral controller drivers and
the various gadget drivers which talk to them.


Individual USB driver directories. A new driver should be added to the
first subdirectory in the list below that it fits into.

image/ - This is for still image drivers, like scanners or
digital cameras.
../input/ - This is for any driver that uses the input subsystem,
like keyboard, mice, touchscreens, tablets, etc.
../media/ - This is for multimedia drivers, like video cameras,
radios, and any other drivers that talk to the v4l
subsystem.
../net/ - This is for network drivers.
serial/ - This is for USB to serial drivers.
storage/ - This is for USB mass-storage drivers.
class/ - This is for all USB device drivers that do not fit
into any of the above categories, and work for a range
of USB Class specified devices.
misc/ - This is for all USB device drivers that do not fit
into any of the above categories.