repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
16 lines
302 B
C
16 lines
302 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ALPHA_HW_IRQ_H
|
|
#define _ALPHA_HW_IRQ_H
|
|
|
|
|
|
extern volatile unsigned long irq_err_count;
|
|
DECLARE_PER_CPU(unsigned long, irq_pmi_count);
|
|
|
|
#ifdef CONFIG_ALPHA_GENERIC
|
|
#define ACTUAL_NR_IRQS alpha_mv.nr_irqs
|
|
#else
|
|
#define ACTUAL_NR_IRQS NR_IRQS
|
|
#endif
|
|
|
|
#endif
|