Release 4.16 arch/arm/include/asm/hw_irq.h
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Nothing to see here yet
*/
#ifndef _ARCH_ARM_HW_IRQ_H
#define _ARCH_ARM_HW_IRQ_H
static inline void ack_bad_irq(int irq)
{
extern unsigned long irq_err_count;
irq_err_count++;
pr_crit("unexpected IRQ trap at vector %02x\n", irq);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 18 | 72.00% | 1 | 50.00% |
Dmitry Baryshkov | 7 | 28.00% | 1 | 50.00% |
Total | 25 | 100.00% | 2 | 100.00% |
#define ARCH_IRQ_INIT_FLAGS (IRQ_NOREQUEST | IRQ_NOPROBE)
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 18 | 46.15% | 1 | 20.00% |
Thomas Gleixner | 13 | 33.33% | 2 | 40.00% |
Dmitry Baryshkov | 7 | 17.95% | 1 | 20.00% |
Greg Kroah-Hartman | 1 | 2.56% | 1 | 20.00% |
Total | 39 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.