brintos

brintos / linux-shallow public Read only

0
0
Text · 403 B · da21de9 Raw
20 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef __ASM_GENERIC_IRQ_H3#define __ASM_GENERIC_IRQ_H4 5/*6 * NR_IRQS is the upper bound of how many interrupts can be handled7 * in the platform. It is used to size the static irq_map array,8 * so don't make it too big.9 */10#ifndef NR_IRQS11#define NR_IRQS 6412#endif13 14static inline int irq_canonicalize(int irq)15{16	return irq;17}18 19#endif /* __ASM_GENERIC_IRQ_H */20