linux/drivers/usb
Mathias Nyman 7bc5d5aff3 usb: xhci: trace URB before giving it back instead of after
Don't access any members of a URB after giving it back.
URB might be freed by then already.

Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-05-18 15:19:41 +02:00
..
atm
c67x00
chipidea Two changes for this v4.12-rc1: 2017-04-18 16:52:20 +02:00
class USB: Revert "cdc-wdm: fix "out-of-sync" due to missing notifications" 2017-04-25 20:04:28 +02:00
common DeviceTree for 4.12: 2017-05-05 19:33:07 -07:00
core USB: hub: fix SS max number of ports 2017-05-17 11:53:02 +02:00
dwc2 usb: changes for v4.12 2017-04-11 16:47:26 +02:00
dwc3 usb: dwc3: keystone: check return value 2017-05-16 14:11:04 +03:00
early
gadget USB: gadget: dummy_hcd: fix hub-descriptor removable fields 2017-05-17 11:53:02 +02:00
host usb: xhci: trace URB before giving it back instead of after 2017-05-18 15:19:41 +02:00
image
isp1760
misc USB: iowarrior: fix info ioctl on big-endian hosts 2017-05-17 11:27:41 +02:00
mon
mtu3 usb: mtu3: Replace the extcon API 2017-04-11 10:58:21 +03:00
musb usb: musb: don't mark of_dev_auxdata as initdata 2017-04-26 11:30:02 +02:00
phy usb: changes for v4.12 2017-04-11 16:47:26 +02:00
renesas_usbhs
serial USB patches for 4.12-rc1 2017-05-04 18:03:51 -07:00
storage USB: ene_usb6250: fix DMA to the stack 2017-05-17 11:27:40 +02:00
typec
usbip USB: usbip: fix nonconforming hub descriptor 2017-05-17 11:53:02 +02:00
wusbcore
Kconfig
Makefile USB patches for 4.12-rc1 2017-05-04 18:03:51 -07:00
README
usb-skeleton.c

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.