Lines Matching refs:subsystem
12 The Linux USB subsystem has grown from supporting only two different
44 excellent introduction to the Linux USB subsystem can be found at the
46 subsystem is structured and introduces the reader to the concept of USB
50 the Linux USB subsystem, giving it some information about which devices
53 information is passed to the USB subsystem in the :c:type:`usb_driver`
76 another kernel subsystem, such as the SCSI, network or TTY subsystem.
78 subsystem, and any user-space interactions are provided through that
79 interface. But for drivers that do not have a matching kernel subsystem,
81 is needed. The USB subsystem provides a way to register a minor device
94 /* register this driver with the USB subsystem */
108 itself with the USB subsystem. This is done with usb_deregister()
113 /* deregister this driver with the USB subsystem */
165 that were passed to the USB subsystem will be called from a user program
188 subsystem. This can be seen in the following code::
215 called when the urb is finished by the USB subsystem. The callback
250 the USB subsystem.