3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-11 01:35:57 +00:00
Brooklyn/arch/sh/include/asm/hardirq.h

18 lines
440 B
C
Raw Normal View History

2021-05-27 00:09:36 +05:00
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __ASM_SH_HARDIRQ_H
#define __ASM_SH_HARDIRQ_H
2021-09-23 21:59:15 +05:00
#include <linux/threads.h>
#include <linux/irq.h>
typedef struct {
unsigned int __softirq_pending;
unsigned int __nmi_count; /* arch dependent */
} ____cacheline_aligned irq_cpustat_t;
2021-05-27 00:09:36 +05:00
2021-09-23 21:59:15 +05:00
#include <linux/irq_cpustat.h> /* Standard mappings for irq_cpustat_t above */
extern void ack_bad_irq(unsigned int irq);
2021-05-27 00:09:36 +05:00
#endif /* __ASM_SH_HARDIRQ_H */