blob: ea43057d47633164b0100367a01f4c9f3ff67e12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* irq.h: IRQ registers on the Sparc.
*
* Copyright (C) 1995, 2007 David S. Miller (davem@davemloft.net)
*/
#ifndef _SPARC_IRQ_H
#define _SPARC_IRQ_H
#include <linux/interrupt.h>
#define NR_IRQS 16
#define irq_canonicalize(irq) (irq)
extern void __init init_IRQ(void);
#endif
|