PERFORCE change 37853 for review
Marcel Moolenaar
marcel at FreeBSD.org
Wed Sep 10 00:15:08 PDT 2003
http://perforce.freebsd.org/chv.cgi?CH=37853
Change 37853 by marcel at marcel_nfs on 2003/09/10 00:14:08
Add INTR_TRIGGER_CONFORM and INTR_POLARITY_CONFORM. They
can be used to configure an interrupt to have a default
or conforming trigger mode or a default or conforming
polarity as defined by the parent bus.
Suggested by: jhb
Affected files ...
.. //depot/projects/ia64/sys/sys/bus.h#11 edit
Differences ...
==== //depot/projects/ia64/sys/sys/bus.h#11 (text+ko) ====
@@ -111,11 +111,13 @@
};
enum intr_trigger {
+ INTR_TRIGGER_CONFORM = 0,
INTR_TRIGGER_EDGE = 1,
INTR_TRIGGER_LEVEL = 2
};
enum intr_polarity {
+ INTR_POLARITY_CONFORM = 0,
INTR_POLARITY_HIGH = 1,
INTR_POLARITY_LOW = 2
};
More information about the p4-projects
mailing list