Rama Bondan Prakoso 29b9c33634 Merge branch 'android-4.14-stable' of https://android.googlesource.com/kernel/common into a11 3 rokov pred
..
atm 38aca0b906 USB: atm: ueagle-atm: add missing endpoint check 5 rokov pred
c67x00 c85bf94bd2 USB: c67x00: fix use after free in c67x00_giveback_urb 4 rokov pred
chipidea 06ff486be1 usb: chipidea: ci_hdrc_imx: add missing put_device() call in usbmisc_get_init_data() 3 rokov pred
class a97ae69bfc USB: cdc-acm: blacklist Heimann USB Appset device 3 rokov pred
common 60397a4e10 usb: common: Consider only available nodes for dr_mode 5 rokov pred
core 553b274c07 Merge branch 'android-4.14-stable' of https://android.googlesource.com/kernel/common into a11 3 rokov pred
dwc2 83d8b68814 usb: dwc2: Fix gadget DMA unmap direction 3 rokov pred
dwc3 58b5e02c6c usb: dwc3: core: fix kernel panic when do reboot 3 rokov pred
early 90adc8923a USB: early: Handle AMD's spec-compliant identifiers, too 4 rokov pred
gadget 29b9c33634 Merge branch 'android-4.14-stable' of https://android.googlesource.com/kernel/common into a11 3 rokov pred
host 553b274c07 Merge branch 'android-4.14-stable' of https://android.googlesource.com/kernel/common into a11 3 rokov pred
image 7eecc768a8 USB: microtek: fix info-leak at probe 5 rokov pred
isp1760 b24413180f License cleanup: add SPDX GPL-2.0 license identifier to files with no license 7 rokov pred
misc 9947d6512e Merge 4.14.235 into android-4.14-stable 3 rokov pred
mon d41971493d usb: mon: Fix a deadlock in usbmon between mmap and read 5 rokov pred
mtu3 553b274c07 Merge branch 'android-4.14-stable' of https://android.googlesource.com/kernel/common into a11 3 rokov pred
musb 5dc2a68b1b usb: musb: Fix suspend with devices connected for a64 3 rokov pred
phy 509b38045c Merge 4.14.168 into android-4.14 4 rokov pred
renesas_usbhs 892d0f41ff usb: renesas_usbhs: Clear PIPECFG for re-enabling pipe with other EPNUM 3 rokov pred
serial dbb7504e7e USB: serial: quatech2: fix control-request directions 3 rokov pred
storage 553b274c07 Merge branch 'android-4.14-stable' of https://android.googlesource.com/kernel/common into a11 3 rokov pred
typec 47d655b4e9 usb: typec: ucsi: Clear PPM capability data in ucsi_init() error path 3 rokov pred
usbip b01382e8c9 usbip: vudc synchronize sysfs code paths 3 rokov pred
wusbcore 149f530334 usb: wusbcore: security: cast sizeof to int for comparison 6 rokov pred
Kconfig e4ea7c1222 usb: Move USB_UHCI_BIG_ENDIAN_* out of USB_SUPPORT 6 rokov pred
Makefile b24413180f License cleanup: add SPDX GPL-2.0 license identifier to files with no license 7 rokov pred
README 37ebb54915 usb: hub: rename khubd to hub_wq in documentation and comments 10 rokov pred
usb-skeleton.c f0c675c561 USB: usb-skeleton: fix NULL-deref on disconnect 5 rokov pred

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.