|
NAMEBUS_CONFIG_INTR —
configure interrupt polarity and trigger mode
SYNOPSIS#include <sys/param.h>
#include <sys/bus.h>
int
DESCRIPTIONTheBUS_CONFIG_INTR () method allows bus or device
drivers to provide interrupt polarity and trigger mode to parent buses. This
typically bubbles all the way up to the root bus (e.g. nexus) where the
necessary actions are taken to actually program the hardware. Since the
BUS_CONFIG_INTR () method takes an interrupt number, it
is assumed but not necessarily required that it is called prior to
BUS_SETUP_INTR(9).
The trig argument can be one of:
The pol argument can be any one of:
RETURN VALUESZero is returned on success, otherwise an appropriate error is returned.SEE ALSOBUS_SETUP_INTR(9), BUS_TEARDOWN_INTR(9), device(9), driver(9)HISTORYTheBUS_CONFIG_INTR () method first appeared in
FreeBSD 5.2.
AUTHORSThis manual page was written by Marcel Moolenaar <marcel@xcllnt.net>.
Visit the GSP FreeBSD Man Page Interface. |