Messages in this thread |  | | | Date | Wed, 14 Dec 2005 07:48:24 -0800 (PST) | | From | Zwane Mwaikambo <> | | Subject | Re: Fwd: [RFC] IRQ type flags |
| |
Hi Russell,
On Mon, 12 Dec 2005, Russell King wrote:
> * Move SA_TRIGGER into linux/signal.h
...
> @@ -705,6 +709,12 @@ int setup_irq(unsigned int irq, struct i > desc->running = 0; > desc->pending = 0; > desc->disable_depth = 1; > + > + if (new->flags & SA_TRIGGER_MASK) { > + unsigned int type = new->flags & SA_TRIGGER;
Hmm, where is SA_TRIGGER defined?
> +#define SA_TRIGGER_LOW 0x00000008 > +#define SA_TRIGGER_HIGH 0x00000004 > +#define SA_TRIGGER_FALLING 0x00000002 > +#define SA_TRIGGER_RISING 0x00000001 > +#define SA_TRIGGER_MASK (SA_TRIGGER_HIGH|SA_TRIGGER_LOW|\ > + SA_TRIGGER_RISING|SA_TRIGGER_FALLING)
Thanks - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |