summaryrefslogtreecommitdiff
path: root/arch/m68k/include/asm/irq_no.h
diff options
context:
space:
mode:
authorGreg Ungerer <gerg@uclinux.org>2009-06-26 16:51:05 +1000
committerGreg Ungerer <gerg@uclinux.org>2009-09-16 09:43:37 +1000
commit3ddc7e261a990d03fa4e78e37e6623ca45b18d77 (patch)
tree95d143a7cf1b8acc0bbb8e442497895caf0b2e54 /arch/m68k/include/asm/irq_no.h
parent633ea5d78b8b01ba903aeaae10297033830a52dd (diff)
downloadlwn-3ddc7e261a990d03fa4e78e37e6623ca45b18d77.tar.gz
lwn-3ddc7e261a990d03fa4e78e37e6623ca45b18d77.zip
m68k: merge mmu and non-mmu versions of irq.h
It is reasonably strait forward to merge the mmu and non-mmu versions of irq.h. Most of the defines and structs are not needed on non-mmu. Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68k/include/asm/irq_no.h')
-rw-r--r--arch/m68k/include/asm/irq_no.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/arch/m68k/include/asm/irq_no.h b/arch/m68k/include/asm/irq_no.h
deleted file mode 100644
index 9373c31ac87d..000000000000
--- a/arch/m68k/include/asm/irq_no.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef _M68KNOMMU_IRQ_H_
-#define _M68KNOMMU_IRQ_H_
-
-#ifdef CONFIG_COLDFIRE
-/*
- * On the ColdFire we keep track of all vectors. That way drivers
- * can register whatever vector number they wish, and we can deal
- * with it.
- */
-#define SYS_IRQS 256
-#define NR_IRQS SYS_IRQS
-
-#else
-
-/*
- * # of m68k interrupts
- */
-#define SYS_IRQS 8
-#define NR_IRQS (24 + SYS_IRQS)
-
-#endif /* CONFIG_COLDFIRE */
-
-
-#define irq_canonicalize(irq) (irq)
-
-#endif /* _M68KNOMMU_IRQ_H_ */