Merge tag 'usb-5.11-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
[linux/fpc-iii.git] / arch / arm / include / asm / mach / irq.h
blobdfe832a3bfc71c04ca5361a89ea994e77332123d
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * arch/arm/include/asm/mach/irq.h
5 * Copyright (C) 1995-2000 Russell King.
6 */
7 #ifndef __ASM_ARM_MACH_IRQ_H
8 #define __ASM_ARM_MACH_IRQ_H
10 #include <linux/irq.h>
12 struct seq_file;
15 * This is internal. Do not use it.
17 extern void init_FIQ(int);
18 extern int show_fiq_list(struct seq_file *, int);
21 * This is for easy migration, but should be changed in the source
23 #define do_bad_IRQ(desc) \
24 do { \
25 raw_spin_lock(&desc->lock); \
26 handle_bad_irq(desc); \
27 raw_spin_unlock(&desc->lock); \
28 } while(0)
30 #endif