From 3ac7823ba90b3521432215e947d21760bc72bff7 Mon Sep 17 00:00:00 2001 From: Sergio Rodriguez Date: Thu, 26 May 2016 11:59:47 -0700 Subject: [PATCH] benchmark: Changing dummy IRQ due conflict with APIC timer IRQ The Quark D2000 uses the IRQ 10 for the APIC timer interrupt, this cause a conflict with the "random" IRQ for the footprint benchmark Change-Id: Iead18821af307832d54b0c9f3db5e52413ba670b Signed-off-by: Sergio Rodriguez --- tests/benchmark/footprint/nanokernel/src/nanokernel_footprint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/benchmark/footprint/nanokernel/src/nanokernel_footprint.c b/tests/benchmark/footprint/nanokernel/src/nanokernel_footprint.c index 1531154733..952c79b9d9 100644 --- a/tests/benchmark/footprint/nanokernel/src/nanokernel_footprint.c +++ b/tests/benchmark/footprint/nanokernel/src/nanokernel_footprint.c @@ -26,7 +26,7 @@ volatile int i = 0; /* counter used by background task */ #include #include -#define IRQ_LINE 10 /* just some random value w/o driver conflicts */ +#define IRQ_LINE 11 /* just some random value w/o driver conflicts */ #define IRQ_PRIORITY 3 #define TEST_SOFT_INT 64