Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 Sep 2003 00:15:07 -0700 (PDT)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 37853 for review
Message-ID:  <200309100715.h8A7F7ed061010@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=37853

Change 37853 by marcel@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
 };



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200309100715.h8A7F7ed061010>