|
NAMEdevice_quiet , device_verbose ,
device_is_quiet —
manipulate device quiet flag
SYNOPSIS#include <sys/param.h>
#include <sys/bus.h>
void
void
int
DESCRIPTIONEach device has a quiet flag associated with it. A device is verbose by default when it is created but may be quieted to prevent printing of the device identification string during attach and printing of a message during detach. To quiet a device, calldevice_quiet () during a device
driver probe routine. To re-enable probe messages, call
device_verbose (). To test to see if a device is
quieted, call device_is_quiet ().
Devices are implicitly marked verbose after a driver detaches. SEE ALSOdevice(9)AUTHORSThis manual page was written by Doug Rabson.
Visit the GSP FreeBSD Man Page Interface. |