2008-05-19 13:13:40 +00:00
|
|
|
/*
|
|
|
|
* 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>
|
2008-08-01 17:13:32 +00:00
|
|
|
#include <asm/native/irq.h>
|
2008-05-19 13:13:40 +00:00
|
|
|
|
|
|
|
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));
|
|
|
|
}
|