mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 20:51:47 +00:00
c416850580
From: Christoph Hellwig <hch@lst.de> [akpm@linux-foundation.org: /arch/sparc/include/asm/irq_32.h: move NR_IRQS definition] Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: David S. Miller <davem@davemloft.net>
17 lines
287 B
C
17 lines
287 B
C
/* 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
|
|
|
|
#define NR_IRQS 16
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#define irq_canonicalize(irq) (irq)
|
|
|
|
extern void __init init_IRQ(void);
|
|
#endif
|