mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-10-04 08:02:24 +00:00
17 lines
410 B
C
17 lines
410 B
C
#ifndef __ASM_SH_HARDIRQ_H
|
|
#define __ASM_SH_HARDIRQ_H
|
|
|
|
#include <linux/threads.h>
|
|
#include <linux/irq.h>
|
|
|
|
/* entry.S is sensitive to the offsets of these fields */
|
|
typedef struct {
|
|
unsigned int __softirq_pending;
|
|
} ____cacheline_aligned irq_cpustat_t;
|
|
|
|
#include <linux/irq_cpustat.h> /* Standard mappings for irq_cpustat_t above */
|
|
|
|
extern void ack_bad_irq(unsigned int irq);
|
|
|
|
#endif /* __ASM_SH_HARDIRQ_H */
|