Lines Matching refs:of
4 Driver binding is the process of associating a device with a device
8 structures, most of the binding can take place using common code.
14 The bus type structure contains a list of all devices that are on that bus
16 inserted into the end of this list. The bus object also contains a
17 list of all drivers of that bus type. When driver_register is called
18 for a driver, it is inserted at the end of this list. These are the
25 When a new device is added, the bus's list of drivers is iterated over
27 ID of the device must match one of the device IDs that the driver
29 Instead of trying to derive a complex state machine and matching
31 a device against the IDs of a driver. The bus returns 1 if a match was
44 Upon the successful completion of probe, the device is registered with
56 driver's list of devices.
82 The bus's list of devices is iterated over to find a match. Devices
91 go to 0. When it does, the remove callback of the driver is called. It
92 is removed from the driver's list of devices and the reference count
93 of the driver is decremented. All symlinks between the two are removed.
95 When a driver is removed, the list of devices that it supports is