change log for rtems (2011-02-09)

rtems-vc at rtems.org rtems-vc at rtems.org
Wed Feb 9 13:10:31 UTC 2011


 *ralf*:
2011-02-09	Ralf Corsépius <ralf.corsepius at rtems.org>

	* timer/timer.c: Include <rtems/btimer.h>.
	Fix benchmark_timer_read() definition.

M  1.135  c/src/lib/libbsp/m68k/gen68360/ChangeLog
M   1.16  c/src/lib/libbsp/m68k/gen68360/timer/timer.c
M  1.114  c/src/lib/libbsp/m68k/mvme136/ChangeLog
M   1.19  c/src/lib/libbsp/m68k/mvme136/timer/timer.c
M  1.112  c/src/lib/libbsp/m68k/mvme147/ChangeLog
M   1.15  c/src/lib/libbsp/m68k/mvme147/timer/timer.c
M  1.125  c/src/lib/libbsp/m68k/mvme162/ChangeLog
M   1.17  c/src/lib/libbsp/m68k/mvme162/timer/timer.c
M  1.131  c/src/lib/libbsp/m68k/mvme167/ChangeLog
M   1.13  c/src/lib/libbsp/m68k/mvme167/timer/timer.c
M   1.47  c/src/lib/libbsp/nios2/nios2_iss/ChangeLog
M    1.6  c/src/lib/libbsp/nios2/nios2_iss/timer/timer.c
M   1.90  c/src/lib/libbsp/no_cpu/no_bsp/ChangeLog
M   1.13  c/src/lib/libbsp/no_cpu/no_bsp/timer/timer.c

diff -u rtems/c/src/lib/libbsp/m68k/gen68360/ChangeLog:1.134 rtems/c/src/lib/libbsp/m68k/gen68360/ChangeLog:1.135
--- rtems/c/src/lib/libbsp/m68k/gen68360/ChangeLog:1.134	Wed Feb  2 08:58:43 2011
+++ rtems/c/src/lib/libbsp/m68k/gen68360/ChangeLog	Wed Feb  9 06:13:53 2011
@@ -1,3 +1,8 @@
+2011-02-09	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* timer/timer.c: Include <rtems/btimer.h>.
+	Fix benchmark_timer_read() definition.
+
 2011-02-02	Ralf Corsépius <ralf.corsepius at rtems.org>
 
 	* configure.ac: Require autoconf-2.68, automake-1.11.1.

diff -u rtems/c/src/lib/libbsp/m68k/gen68360/timer/timer.c:1.15 rtems/c/src/lib/libbsp/m68k/gen68360/timer/timer.c:1.16
--- rtems/c/src/lib/libbsp/m68k/gen68360/timer/timer.c:1.15	Wed Apr 28 14:16:22 2010
+++ rtems/c/src/lib/libbsp/m68k/gen68360/timer/timer.c	Wed Feb  9 06:13:53 2011
@@ -32,6 +32,7 @@
  */
 
 #include <rtems.h>
+#include <rtems/btimer.h>
 #include <bsp.h>
 #include <rtems/m68k/m68360.h>
 
@@ -69,7 +70,7 @@
 /*
  * Return timer value in microsecond units
  */
-int
+uint32_t
 benchmark_timer_read (void)
 {
 	unsigned short val;

diff -u rtems/c/src/lib/libbsp/m68k/mvme136/ChangeLog:1.113 rtems/c/src/lib/libbsp/m68k/mvme136/ChangeLog:1.114
--- rtems/c/src/lib/libbsp/m68k/mvme136/ChangeLog:1.113	Wed Feb  2 08:59:13 2011
+++ rtems/c/src/lib/libbsp/m68k/mvme136/ChangeLog	Wed Feb  9 06:10:53 2011
@@ -1,3 +1,8 @@
+2011-02-09	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* timer/timer.c: Include <rtems/btimer.h>.
+	Fix benchmark_timer_read() definition.
+
 2011-02-02	Ralf Corsépius <ralf.corsepius at rtems.org>
 
 	* configure.ac: Require autoconf-2.68, automake-1.11.1.

diff -u rtems/c/src/lib/libbsp/m68k/mvme136/timer/timer.c:1.18 rtems/c/src/lib/libbsp/m68k/mvme136/timer/timer.c:1.19
--- rtems/c/src/lib/libbsp/m68k/mvme136/timer/timer.c:1.18	Tue Sep 30 11:25:59 2008
+++ rtems/c/src/lib/libbsp/m68k/mvme136/timer/timer.c	Wed Feb  9 06:10:53 2011
@@ -9,6 +9,7 @@
  *  $Id$
  */
 
+#include <rtems/btimer.h>
 #include <bsp.h>
 #include <rtems/zilog/z8036.h>
 
@@ -51,7 +52,7 @@
                              /* (6 countdowns) to start/stop the timer. */
 #define LEAST_VALID       10 /* Don't trust a value lower than this */
 
-int benchmark_timer_read(void)
+uint32_t benchmark_timer_read(void)
 {
 /*
   uint8_t          msb, lsb;

diff -u rtems/c/src/lib/libbsp/m68k/mvme147/ChangeLog:1.111 rtems/c/src/lib/libbsp/m68k/mvme147/ChangeLog:1.112
--- rtems/c/src/lib/libbsp/m68k/mvme147/ChangeLog:1.111	Wed Feb  2 08:59:14 2011
+++ rtems/c/src/lib/libbsp/m68k/mvme147/ChangeLog	Wed Feb  9 06:11:48 2011
@@ -1,3 +1,8 @@
+2011-02-09	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* timer/timer.c: Include <rtems/btimer.h>.
+	Fix benchmark_timer_read() definition.
+
 2011-02-02	Ralf Corsépius <ralf.corsepius at rtems.org>
 
 	* configure.ac: Require autoconf-2.68, automake-1.11.1.

diff -u rtems/c/src/lib/libbsp/m68k/mvme147/timer/timer.c:1.14 rtems/c/src/lib/libbsp/m68k/mvme147/timer/timer.c:1.15
--- rtems/c/src/lib/libbsp/m68k/mvme147/timer/timer.c:1.14	Wed Apr 28 14:43:31 2010
+++ rtems/c/src/lib/libbsp/m68k/mvme147/timer/timer.c	Wed Feb  9 06:11:48 2011
@@ -13,6 +13,7 @@
  *  $Id$
  */
 
+#include <rtems/btimer.h>
 #include <bsp.h>
 
 #define TIMER_INT_LEVEL 6
@@ -46,7 +47,7 @@
 				synchronized whith the counter updates*/
 #define LEAST_VALID       10 /* Don't trust a value lower than this */
 
-int benchmark_timer_read(void)
+uint32_t benchmark_timer_read(void)
 {
   uint32_t         total;
   uint16_t         counter_value;

diff -u rtems/c/src/lib/libbsp/m68k/mvme162/ChangeLog:1.124 rtems/c/src/lib/libbsp/m68k/mvme162/ChangeLog:1.125
--- rtems/c/src/lib/libbsp/m68k/mvme162/ChangeLog:1.124	Wed Feb  2 08:59:18 2011
+++ rtems/c/src/lib/libbsp/m68k/mvme162/ChangeLog	Wed Feb  9 06:12:29 2011
@@ -1,3 +1,8 @@
+2011-02-09	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* timer/timer.c: Include <rtems/btimer.h>.
+	Fix benchmark_timer_read() definition.
+
 2011-02-02	Ralf Corsépius <ralf.corsepius at rtems.org>
 
 	* configure.ac: Require autoconf-2.68, automake-1.11.1.

diff -u rtems/c/src/lib/libbsp/m68k/mvme162/timer/timer.c:1.16 rtems/c/src/lib/libbsp/m68k/mvme162/timer/timer.c:1.17
--- rtems/c/src/lib/libbsp/m68k/mvme162/timer/timer.c:1.16	Tue Sep 30 11:26:03 2008
+++ rtems/c/src/lib/libbsp/m68k/mvme162/timer/timer.c	Wed Feb  9 06:12:29 2011
@@ -19,6 +19,7 @@
  */
 
 #include <rtems.h>
+#include <rtems/btimer.h>
 #include <bsp.h>
 
 /* Periodic tick interval */
@@ -51,7 +52,7 @@
                                 /* (3 countdowns) to start/stop the timer. */
 #define LEAST_VALID       10U   /* Don't trust a value lower than this */
 
-int benchmark_timer_read(void)
+uint32_t benchmark_timer_read(void)
 {
   uint32_t            total;
 

diff -u rtems/c/src/lib/libbsp/m68k/mvme167/ChangeLog:1.130 rtems/c/src/lib/libbsp/m68k/mvme167/ChangeLog:1.131
--- rtems/c/src/lib/libbsp/m68k/mvme167/ChangeLog:1.130	Wed Feb  2 08:59:21 2011
+++ rtems/c/src/lib/libbsp/m68k/mvme167/ChangeLog	Wed Feb  9 06:13:10 2011
@@ -1,3 +1,8 @@
+2011-02-09	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* timer/timer.c: Include <rtems/btimer.h>.
+	Fix benchmark_timer_read() definition.
+
 2011-02-02	Ralf Corsépius <ralf.corsepius at rtems.org>
 
 	* configure.ac: Require autoconf-2.68, automake-1.11.1.

diff -u rtems/c/src/lib/libbsp/m68k/mvme167/timer/timer.c:1.12 rtems/c/src/lib/libbsp/m68k/mvme167/timer/timer.c:1.13
--- rtems/c/src/lib/libbsp/m68k/mvme167/timer/timer.c:1.12	Wed Apr 28 14:43:35 2010
+++ rtems/c/src/lib/libbsp/m68k/mvme167/timer/timer.c	Wed Feb  9 06:13:10 2011
@@ -31,6 +31,7 @@
  */
 
 #include <rtems.h>
+#include <rtems/btimer.h>
 #include <bsp.h>
 
 /* Periodic tick interval */
@@ -105,7 +106,7 @@
  *  LEAST_VALID is the lowest number this routine should trust.  Numbers
  *  below this are "noise" and zero is returned.
  */
-int benchmark_timer_read(void)
+uint32_t benchmark_timer_read(void)
 {
   uint32_t            total;
 

diff -u rtems/c/src/lib/libbsp/nios2/nios2_iss/ChangeLog:1.46 rtems/c/src/lib/libbsp/nios2/nios2_iss/ChangeLog:1.47
--- rtems/c/src/lib/libbsp/nios2/nios2_iss/ChangeLog:1.46	Wed Feb  2 08:59:47 2011
+++ rtems/c/src/lib/libbsp/nios2/nios2_iss/ChangeLog	Wed Feb  9 06:15:05 2011
@@ -1,3 +1,8 @@
+2011-02-09	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* timer/timer.c: Include <rtems/btimer.h>.
+	Fix benchmark_timer_read() definition.
+
 2011-02-02	Ralf Corsépius <ralf.corsepius at rtems.org>
 
 	* configure.ac: Require autoconf-2.68, automake-1.11.1.

diff -u rtems/c/src/lib/libbsp/nios2/nios2_iss/timer/timer.c:1.5 rtems/c/src/lib/libbsp/nios2/nios2_iss/timer/timer.c:1.6
--- rtems/c/src/lib/libbsp/nios2/nios2_iss/timer/timer.c:1.5	Sun Nov 29 22:53:31 2009
+++ rtems/c/src/lib/libbsp/nios2/nios2_iss/timer/timer.c	Wed Feb  9 06:15:05 2011
@@ -23,6 +23,7 @@
 #define TIMER_WRAPS_AFTER_1MS 0
 
 #include <rtems.h>
+#include <rtems/btimer.h>
 #include <rtems/score/cpu.h>
 #include <bsp.h>
 
@@ -97,7 +98,7 @@
 
 #define LEAST_VALID AVG_OVERHEAD /* Don't trust a value lower than this */
 
-int benchmark_timer_read( void )
+uint32_t benchmark_timer_read( void )
 {
   uint32_t timer_wraps;
   uint32_t timer_snap;

diff -u rtems/c/src/lib/libbsp/no_cpu/no_bsp/ChangeLog:1.89 rtems/c/src/lib/libbsp/no_cpu/no_bsp/ChangeLog:1.90
--- rtems/c/src/lib/libbsp/no_cpu/no_bsp/ChangeLog:1.89	Wed Feb  2 08:59:50 2011
+++ rtems/c/src/lib/libbsp/no_cpu/no_bsp/ChangeLog	Wed Feb  9 06:15:54 2011
@@ -1,3 +1,8 @@
+2011-02-09	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* timer/timer.c: Include <rtems/btimer.h>.
+	Fix benchmark_timer_read() definition.
+
 2011-02-02	Ralf Corsépius <ralf.corsepius at rtems.org>
 
 	* configure.ac: Require autoconf-2.68, automake-1.11.1.

diff -u rtems/c/src/lib/libbsp/no_cpu/no_bsp/timer/timer.c:1.12 rtems/c/src/lib/libbsp/no_cpu/no_bsp/timer/timer.c:1.13
--- rtems/c/src/lib/libbsp/no_cpu/no_bsp/timer/timer.c:1.12	Fri Sep  5 06:33:42 2008
+++ rtems/c/src/lib/libbsp/no_cpu/no_bsp/timer/timer.c	Wed Feb  9 06:15:54 2011
@@ -19,6 +19,7 @@
  */
 
 #include <rtems.h>
+#include <rtems/btimer.h>
 #include <bsp.h>
 
 uint32_t         Timer_interrupts;
@@ -54,7 +55,7 @@
                              /* 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;



--

Generated by Deluxe Loginfo [http://www.codewiz.org/projects/index.html#loginfo] 2.122 by Bernardo Innocenti <bernie at develer.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/vc/attachments/20110209/4da1fd05/attachment-0001.html>


More information about the vc mailing list