The interrupt trigger mode is standard for the bus to which the device is attached.
INTR_TRIGGER_EDGE
The interrupt is edge triggered. This means that the interrupt is raised by the rising edge of the signal on the interrupt line. The signal typically reverts to the original state so as to cause a spike.
INTR_TRIGGER_LEVEL
The interrupt is level triggered. This means that the interrupt is raised when the signal on the interrupt line transitions and remains unchanged after that until the interrupt has been serviced, after which the signal transitions back.
The pol argument can be any one of:
INTR_POLARITY_CONFORM
The interrupt polarity is standard for the bus to which the device is attached.
INTR_POLARITY_HIGH
The interrupt is activated by a high voltage on the interrupt line.
INTR_POLARITY_LOW
The interrupt is activated by a low voltage on the interrupt line.