Release 4.12 include/linux/irqchip/metag.h
/*
* Copyright (C) 2011 Imagination Technologies
*/
#ifndef _LINUX_IRQCHIP_METAG_H_
#define _LINUX_IRQCHIP_METAG_H_
#include <linux/errno.h>
#ifdef CONFIG_METAG_PERFCOUNTER_IRQS
extern int init_internal_IRQ(void);
extern int internal_irq_map(unsigned int hw);
#else
static inline int init_internal_IRQ(void)
{
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
James Hogan | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
static inline int internal_irq_map(unsigned int hw)
{
return -EINVAL;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
James Hogan | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
#endif
#endif /* _LINUX_IRQCHIP_METAG_H_ */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
James Hogan | 63 | 100.00% | 1 | 100.00% |
Total | 63 | 100.00% | 1 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.