mirror of
https://github.com/armbian/linux.git
synced 2026-01-06 10:13:00 -08:00
Add ->retrigger() irq op to consolidate hw_irq_resend() implementations. (Most architectures had it defined to NOP anyway.) NOTE: ia64 needs testing. i386 and x86_64 tested. Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
14 lines
216 B
C
14 lines
216 B
C
#ifndef _ALPHA_HW_IRQ_H
|
|
#define _ALPHA_HW_IRQ_H
|
|
|
|
|
|
extern volatile unsigned long irq_err_count;
|
|
|
|
#ifdef CONFIG_ALPHA_GENERIC
|
|
#define ACTUAL_NR_IRQS alpha_mv.nr_irqs
|
|
#else
|
|
#define ACTUAL_NR_IRQS NR_IRQS
|
|
#endif
|
|
|
|
#endif
|