1DEVICE_DEL(9) Device drivers infrastructure DEVICE_DEL(9)
2
3
4
6 device_del - delete device from system.
7
9 void device_del(struct device * dev);
10
12 dev
13 device.
14
16 This is the first part of the device unregistration sequence. This
17 removes the device from the lists we control from here, has it removed
18 from the other driver model subsystems it was added to in device_add,
19 and removes it from the kobject hierarchy.
20
22 this should be called manually _iff_ device_add was also called
23 manually.
24
26Kernel Hackers Manual 2.6. November 2011 DEVICE_DEL(9)