diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-07-31 03:38:19 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-31 18:39:39 -0400 |
commit | 99eb8a550dbccc0e1f6c7e866fe421810e0585f6 (patch) | |
tree | 130c6e3338a0655ba74355eba83afab9261e1ed0 /include/asm-arm26/sysirq.h | |
parent | 0d0ed42e5ca2e22465c591341839c18025748fe8 (diff) |
Remove the arm26 port
The arm26 port has been in a state where it was far from even compiling
for quite some time.
Ian Molton agreed with the removal.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Cc: Ian Molton <spyro@f2s.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-arm26/sysirq.h')
-rw-r--r-- | include/asm-arm26/sysirq.h | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/include/asm-arm26/sysirq.h b/include/asm-arm26/sysirq.h deleted file mode 100644 index 81dca90d9a3f..000000000000 --- a/include/asm-arm26/sysirq.h +++ /dev/null | |||
@@ -1,60 +0,0 @@ | |||
1 | /* | ||
2 | * linux/include/asm-arm/arch-arc/irqs.h | ||
3 | * | ||
4 | * Copyright (C) 1996 Russell King, Dave Gilbert | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | * | ||
10 | * Modifications: | ||
11 | * 04-04-1998 PJB Merged arc and a5k versions | ||
12 | */ | ||
13 | |||
14 | |||
15 | #if defined(CONFIG_ARCH_A5K) | ||
16 | #define IRQ_PRINTER 0 | ||
17 | #define IRQ_BATLOW 1 | ||
18 | #define IRQ_FLOPPYINDEX 2 | ||
19 | #define IRQ_FLOPPYDISK 12 | ||
20 | #elif defined(CONFIG_ARCH_ARC) | ||
21 | #define IRQ_PRINTERBUSY 0 | ||
22 | #define IRQ_SERIALRING 1 | ||
23 | #define IRQ_PRINTERACK 2 | ||
24 | #define IRQ_FLOPPYCHANGED 12 | ||
25 | #endif | ||
26 | |||
27 | #define IRQ_VSYNCPULSE 3 | ||
28 | #define IRQ_POWERON 4 | ||
29 | #define IRQ_TIMER0 5 | ||
30 | #define IRQ_TIMER1 6 | ||
31 | #define IRQ_IMMEDIATE 7 | ||
32 | #define IRQ_EXPCARDFIQ 8 | ||
33 | #define IRQ_SOUNDCHANGE 9 | ||
34 | #define IRQ_SERIALPORT 10 | ||
35 | #define IRQ_HARDDISK 11 | ||
36 | #define IRQ_EXPANSIONCARD 13 | ||
37 | #define IRQ_KEYBOARDTX 14 | ||
38 | #define IRQ_KEYBOARDRX 15 | ||
39 | |||
40 | #if defined(CONFIG_ARCH_A5K) | ||
41 | #define FIQ_SERIALPORT 4 | ||
42 | #elif defined(CONFIG_ARCH_ARC) | ||
43 | #define FIQ_FLOPPYIRQ 1 | ||
44 | #define FIQ_FD1772 FIQ_FLOPPYIRQ | ||
45 | #endif | ||
46 | |||
47 | #define FIQ_FLOPPYDATA 0 | ||
48 | #define FIQ_ECONET 2 | ||
49 | #define FIQ_EXPANSIONCARD 6 | ||
50 | #define FIQ_FORCE 7 | ||
51 | |||
52 | #define IRQ_TIMER IRQ_TIMER0 | ||
53 | |||
54 | /* | ||
55 | * This is the offset of the FIQ "IRQ" numbers | ||
56 | */ | ||
57 | #define FIQ_START 64 | ||
58 | |||
59 | #define irq_cannonicalize(i) (i) | ||
60 | |||