aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ia64/kernel/nr-irqs.c
blob: f6769cd54bd93ce70f698d233ca7c1d16a39e3b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * calculate
 * NR_IRQS = max(IA64_NATIVE_NR_IRQS, XEN_NR_IRQS, FOO_NR_IRQS...)
 * depending on config.
 * This must be calculated before processing asm-offset.c.
 */

#define ASM_OFFSETS_C 1

#include <linux/kbuild.h>
#include <linux/threads.h>
#include <asm/native/irq.h>

void foo(void)
{
	union paravirt_nr_irqs_max {
		char ia64_native_nr_irqs[IA64_NATIVE_NR_IRQS];
	};

	DEFINE(NR_IRQS, sizeof (union paravirt_nr_irqs_max));
}