devclass_add_driverdevclass_delete_driverdevclass_find_driver
- manipulate the drivers in a devclass
SYNOPSIS
#include <sys/param.h>
#include <sys/bus.h> int
devclass_add_driver (devclass_t dc driver_t *driver); int
devclass_delete_driver (devclass_t dc driver_t *driver); driver_t *
devclass_find_driver (devclass_t dc const char *name);
DESCRIPTION
These functions can be used to add new drivers into the system, remove
old ones and search for existing ones.
Normally drivers are added
automatically during system initialisation.