Writing Device Drivers
Previous Next

Device Software State Functions

The device software state functions are:

ddi_get_driver_private()

Get the address of the device's private data area

ddi_get_soft_state()

Get pointer to instance soft-state structure

ddi_set_driver_private()

Set the address of the device's private data area

ddi_soft_state_fini()

Destroy driver soft-state structure

ddi_soft_state_free()

Free instance soft-state structure

ddi_soft_state_init()

Initialize driver soft-state structure

ddi_soft_state_zalloc()

Allocate instance soft-state structure

Previous Next