From 8c151ead666f05424545f88118b462e03c24f85b Mon Sep 17 00:00:00 2001 From: Sebastien GODARD Date: Sun, 11 Feb 2018 18:23:56 +0100 Subject: [PATCH] Increase NR_IRQS value (max number of interrupts) The old value of 1024 appears to be too low for some systems. Signed-off-by: Sebastien GODARD --- common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.h b/common.h index e343a1b..20c3c16 100644 --- a/common.h +++ b/common.h @@ -54,7 +54,7 @@ #endif /* Maximum number of interrupts */ -#define NR_IRQS 1024 +#define NR_IRQS 4096 /* Size of /proc/interrupts line, CPU data excluded */ #define INTERRUPTS_LINE 128 -- 2.40.0