treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / arch / mips / include / asm / mach-ath79 / irq.h
blob2df1abf9e5af3981d120c036bb23e05ac871d527
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Copyright (C) 2008-2010 Gabor Juhos <juhosg@openwrt.org>
4 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
5 */
6 #ifndef __ASM_MACH_ATH79_IRQ_H
7 #define __ASM_MACH_ATH79_IRQ_H
9 #define MIPS_CPU_IRQ_BASE 0
10 #define NR_IRQS 51
12 #define ATH79_CPU_IRQ(_x) (MIPS_CPU_IRQ_BASE + (_x))
14 #define ATH79_MISC_IRQ_BASE 8
15 #define ATH79_MISC_IRQ_COUNT 32
16 #define ATH79_MISC_IRQ(_x) (ATH79_MISC_IRQ_BASE + (_x))
18 #define ATH79_PCI_IRQ_BASE (ATH79_MISC_IRQ_BASE + ATH79_MISC_IRQ_COUNT)
19 #define ATH79_PCI_IRQ_COUNT 6
20 #define ATH79_PCI_IRQ(_x) (ATH79_PCI_IRQ_BASE + (_x))
22 #define ATH79_IP2_IRQ_BASE (ATH79_PCI_IRQ_BASE + ATH79_PCI_IRQ_COUNT)
23 #define ATH79_IP2_IRQ_COUNT 2
24 #define ATH79_IP2_IRQ(_x) (ATH79_IP2_IRQ_BASE + (_x))
26 #define ATH79_IP3_IRQ_BASE (ATH79_IP2_IRQ_BASE + ATH79_IP2_IRQ_COUNT)
27 #define ATH79_IP3_IRQ_COUNT 3
28 #define ATH79_IP3_IRQ(_x) (ATH79_IP3_IRQ_BASE + (_x))
30 #include_next <irq.h>
32 #endif /* __ASM_MACH_ATH79_IRQ_H */