mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-01 17:46:48 +07:00
7f30491ccd
After moving the the include files there were a few clean-ups: 1) Some files used #include <asm-ia64/xyz.h>, changed to <asm/xyz.h> 2) Some comments alerted maintainers to look at various header files to make matching updates if certain code were to be changed. Updated these comments to use the new include paths. 3) Some header files mentioned their own names in initial comments. Just deleted these self references. Signed-off-by: Tony Luck <tony.luck@intel.com>
25 lines
494 B
C
25 lines
494 B
C
/*
|
|
* 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];
|
|
#ifdef CONFIG_XEN
|
|
char xen_nr_irqs[XEN_NR_IRQS];
|
|
#endif
|
|
};
|
|
|
|
DEFINE(NR_IRQS, sizeof (union paravirt_nr_irqs_max));
|
|
}
|