2007-07-19 10:49:12 +02:00
|
|
|
#ifndef _M68KNOMMU_IRQ_H_
|
|
|
|
#define _M68KNOMMU_IRQ_H_
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#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
|
|
|
|
*/
|
2007-07-19 10:49:12 +02:00
|
|
|
#define SYS_IRQS 8
|
|
|
|
#define NR_IRQS (24 + SYS_IRQS)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#endif /* CONFIG_COLDFIRE */
|
|
|
|
|
|
|
|
|
2006-12-06 02:36:13 +01:00
|
|
|
#define irq_canonicalize(irq) (irq)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-07-19 10:49:12 +02:00
|
|
|
#endif /* _M68KNOMMU_IRQ_H_ */
|