aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorVasant Hegde <hegdevasant@linux.vnet.ibm.com>2014-11-19 15:36:55 +0530
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2014-11-22 08:25:13 +1100
commitb5cbf94faeafad94ee77f48c7142630897f27517 (patch)
treec7452211f515954c970b4cc98b9bc2f3bee62367 /core
parentc38c2e8d08e03e905b72334747a9f8795f3526c2 (diff)
downloadskiboot-b5cbf94faeafad94ee77f48c7142630897f27517.zip
skiboot-b5cbf94faeafad94ee77f48c7142630897f27517.tar.gz
skiboot-b5cbf94faeafad94ee77f48c7142630897f27517.tar.bz2
core/test: Fix timer test case
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 <hegdevasant@linux.vnet.ibm.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'core')
-rw-r--r--core/test/run-timer.c2
1 files changed, 1 insertions, 1 deletions
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;