blob: d1f09892da2e4bc97bcf408c53dc3c20f8370190 [file] [log] [blame]
David Schleef74b847f2008-11-14 14:20:56 -08001/*
2 linux/interrupt.h compatibility header
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19#ifndef __COMPAT_LINUX_INTERRUPT_H_
20#define __COMPAT_LINUX_INTERRUPT_H_
21
22#include <linux/interrupt.h>
23
David Schleef74b847f2008-11-14 14:20:56 -080024#ifndef IRQF_DISABLED
25#define IRQF_DISABLED SA_INTERRUPT
26#define IRQF_SAMPLE_RANDOM SA_SAMPLE_RANDOM
27#define IRQF_SHARED SA_SHIRQ
28#define IRQF_PROBE_SHARED SA_PROBEIRQ
29#define IRQF_PERCPU SA_PERCPU
30#ifdef SA_TRIGGER_MASK
31#define IRQF_TRIGGER_NONE 0
32#define IRQF_TRIGGER_LOW SA_TRIGGER_LOW
33#define IRQF_TRIGGER_HIGH SA_TRIGGER_HIGH
34#define IRQF_TRIGGER_FALLING SA_TRIGGER_FALLING
35#define IRQF_TRIGGER_RISING SA_TRIGGER_RISING
36#define IRQF_TRIGGER_MASK SA_TRIGGER_MASK
37#else
38#define IRQF_TRIGGER_NONE 0
39#define IRQF_TRIGGER_LOW 0
40#define IRQF_TRIGGER_HIGH 0
41#define IRQF_TRIGGER_FALLING 0
42#define IRQF_TRIGGER_RISING 0
43#define IRQF_TRIGGER_MASK 0
44#endif
45#endif
46
David Schleef74b847f2008-11-14 14:20:56 -080047#define PT_REGS_ARG
48#define PT_REGS_CALL
49#define PT_REGS_NULL
David Schleef74b847f2008-11-14 14:20:56 -080050
51#endif