FreeBSD kernel kern code
|
#include <sys/bus.h>
Go to the source code of this file.
Variables | |
INTERFACE | device |
CODE | |
METHOD int | probe |
Probe to see if a device matches a driver. More... | |
STATICMETHOD void | identify |
Allow a device driver to detect devices not otherwise enumerated. More... | |
device_t | parent |
METHOD int | attach |
Attach a device to a device driver. More... | |
METHOD int | detach |
Detach a driver from a device. More... | |
METHOD int | shutdown |
Called during system shutdown. More... | |
DEFAULT | null_shutdown |
METHOD int | suspend |
This is called by the power-management subsystem when a suspend has been requested by the user or by some automatic mechanism. More... | |
DEFAULT | null_suspend |
METHOD int | resume |
This is called when the system resumes after a suspend. More... | |
DEFAULT | null_resume |
METHOD int | quiesce |
This is called when the driver is asked to quiesce itself. More... | |
DEFAULT | null_quiesce |