From b5cbf94faeafad94ee77f48c7142630897f27517 Mon Sep 17 00:00:00 2001 From: Vasant Hegde Date: Wed, 19 Nov 2014 15:36:55 +0530 Subject: core/test: Fix timer test case MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commit b54d1a8 broke timer test case. core/test/run-timer.c: In function ‘main’: core/test/run-timer.c:52:3: error: too few arguments to function ‘check_timers’ check_timers(); ^ In file included from core/test/run-timer.c:16:0: core/test/../timer.c:201:6: note: declared here void check_timers(bool from_interrupt) ^ make: *** [core/test/run-timer] Error 1 This patch fixes above compilation issue. Signed-off-by: Vasant Hegde Signed-off-by: Benjamin Herrenschmidt --- core/test/run-timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/test/run-timer.c b/core/test/run-timer.c index 36d9a65..8452ee0 100644 --- a/core/test/run-timer.c +++ b/core/test/run-timer.c @@ -49,7 +49,7 @@ int main(void) } count = NUM_TIMERS; while(count) { - check_timers(); + check_timers(false); stamp++; } return 0; -- cgit v1.1