Lines Matching refs:devices

14 Most of the work of porting devices drivers to the new model happens
80 subdirectories: 'devices' and 'drivers'.
84 |-- devices
125 When devices are discovered or registered with the bus type, the
131 necessary for representing devices in sysfs.
136 The driver model maintains an ordered list of devices that it uses
138 devices are shutdown before their physical parents, and vice versa.
140 devices.
174 This should happen on buses that support hotpluggable devices.
186 /sys/devices/pci0/
206 Also, symlinks are created in the bus's 'devices' directory
209 /sys/bus/pci/devices/
210 |-- 00:00.0 -> ../../../devices/pci0/00:00.0
211 |-- 00:01.0 -> ../../../devices/pci0/00:01.0
212 |-- 00:02.0 -> ../../../devices/pci0/00:02.0
213 |-- 00:1e.0 -> ../../../devices/pci0/00:1e.0
214 |-- 00:1f.0 -> ../../../devices/pci0/00:1f.0
215 |-- 00:1f.1 -> ../../../devices/pci0/00:1f.1
216 |-- 00:1f.2 -> ../../../devices/pci0/00:1f.2
217 |-- 00:1f.3 -> ../../../devices/pci0/00:1f.3
218 |-- 00:1f.5 -> ../../../devices/pci0/00:1f.5
219 |-- 01:00.0 -> ../../../devices/pci0/00:01.0/01:00.0
220 |-- 02:1f.0 -> ../../../devices/pci0/00:02.0/02:1f.0
221 |-- 03:00.0 -> ../../../devices/pci0/00:02.0/02:1f.0/03:00.0
222 `-- 04:04.0 -> ../../../devices/pci0/00:1e.0/04:04.0
234 Just like with devices, do something like:
330 devices must be bound to a driver, or drivers must be bound to all
331 devices that it supports.
334 bus driver compares these IDs to the IDs of devices registered with it.
349 When a driver is registered, the bus's list of devices is iterated
354 set, the device is added to a per-driver list of devices, and a
360 | `-- 00:0b.0 -> ../../../../devices/pci0/00:0b.0
363 | `-- 00:00.0 -> ../../../../devices/pci0/00:00.0
365 | `-- 00:0c.0 -> ../../../../devices/pci0/00:0c.0
403 struct bus_type contains a list of all devices registered with the bus
404 type. This includes all devices on all instances of that bus type.
408 The core provides an iterator to access these devices.
420 The drivers may be iterated over, like devices: