e9ed7e722e
Now that the last inlined instances are gone, all that is left to do is turning disable_irq_nosync on arm26 and m68k from defines to aliases and we are all set - we can make these externs in linux/interrupt.h uncoditional and kill remaining instances in asm/irq.h Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
19 lines
419 B
C
19 lines
419 B
C
/* $Id: irq.h,v 1.32 2000/08/26 02:42:28 anton Exp $
|
|
* irq.h: IRQ registers on the Sparc.
|
|
*
|
|
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
|
|
*/
|
|
|
|
#ifndef _SPARC_IRQ_H
|
|
#define _SPARC_IRQ_H
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#define NR_IRQS 16
|
|
|
|
#define irq_canonicalize(irq) (irq)
|
|
|
|
extern int request_fast_irq(unsigned int irq, irq_handler_t handler, unsigned long flags, __const__ char *devname);
|
|
|
|
#endif
|