|
DEVCLASS_GET_SOFTC(9)
Contents
|
devclass_get_softc -- translate unit number to driver private structure
#include <sys/param.h>
#include <sys/bus.h>
void *
devclass_get_softc(devclass_t dc, int unit);
This function retrieves the driver private instance variables for the
device with the given unit number and returns it.
If the device exists, its driver-private variables are returned, otherwise
NULL is returned.
device(9)
This man page was written by Doug Rabson.
FreeBSD 5.2.1 June 16, 1998 FreeBSD 5.2.1 [ Back ] |