From 26c173775a7f6ac412d0715ede1ab86a1f9169a9 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Wed, 9 Feb 2011 12:15:54 +0000 Subject: =?UTF-8?q?2011-02-09=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * timer/timer.c: Include . Fix benchmark_timer_read() definition. --- c/src/lib/libbsp/no_cpu/no_bsp/ChangeLog | 5 +++++ c/src/lib/libbsp/no_cpu/no_bsp/timer/timer.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'c/src/lib/libbsp/no_cpu/no_bsp') diff --git a/c/src/lib/libbsp/no_cpu/no_bsp/ChangeLog b/c/src/lib/libbsp/no_cpu/no_bsp/ChangeLog index a77644d1d8..c5a7573a77 100644 --- a/c/src/lib/libbsp/no_cpu/no_bsp/ChangeLog +++ b/c/src/lib/libbsp/no_cpu/no_bsp/ChangeLog @@ -1,3 +1,8 @@ +2011-02-09 Ralf Corsépius + + * timer/timer.c: Include . + Fix benchmark_timer_read() definition. + 2011-02-02 Ralf Corsépius * configure.ac: Require autoconf-2.68, automake-1.11.1. diff --git a/c/src/lib/libbsp/no_cpu/no_bsp/timer/timer.c b/c/src/lib/libbsp/no_cpu/no_bsp/timer/timer.c index 0fad1a9d26..8877c2e3f3 100644 --- a/c/src/lib/libbsp/no_cpu/no_bsp/timer/timer.c +++ b/c/src/lib/libbsp/no_cpu/no_bsp/timer/timer.c @@ -19,6 +19,7 @@ */ #include +#include #include uint32_t Timer_interrupts; @@ -54,7 +55,7 @@ void benchmark_timer_initialize( void ) /* This value is in microseconds. */ #define LEAST_VALID 1 /* Don't trust a clicks value lower than this */ -int benchmark_timer_read( void ) +uint32_t benchmark_timer_read( void ) { uint32_t clicks; uint32_t total; -- cgit v1.2.3