<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems (2011-10-13)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-10-13 Ralf Corsépius <ralf.corsepius@rtems.org>

        * shared/comm/uart.c: Remove unused var "tmp".
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/i386/ChangeLog.diff?r1=text&tr1=1.86&r2=text&tr2=1.87&diff_format=h">M</a></td><td width='1%'>1.87</td><td width='100%'>c/src/lib/libbsp/i386/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/i386/shared/comm/uart.c.diff?r1=text&tr1=1.20&r2=text&tr2=1.21&diff_format=h">M</a></td><td width='1%'>1.21</td><td width='100%'>c/src/lib/libbsp/i386/shared/comm/uart.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/c/src/lib/libbsp/i386/ChangeLog:1.86 rtems/c/src/lib/libbsp/i386/ChangeLog:1.87
--- rtems/c/src/lib/libbsp/i386/ChangeLog:1.86  Thu Aug  4 19:15:50 2011
+++ rtems/c/src/lib/libbsp/i386/ChangeLog       Thu Oct 13 07:18:39 2011
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2011-10-13    Ralf Corsépius <ralf.corsepius@rtems.org>
+
+       * shared/comm/uart.c: Remove unused var "tmp".
+
</font> 2011-08-04        Till Straumann <strauman@slac.stanford.edu>
 
        * shared/irq/irq_asm.S: BUGFIX (introduced by SMP changes

<font color='#006600'>diff -u rtems/c/src/lib/libbsp/i386/shared/comm/uart.c:1.20 rtems/c/src/lib/libbsp/i386/shared/comm/uart.c:1.21
--- rtems/c/src/lib/libbsp/i386/shared/comm/uart.c:1.20 Fri Feb 11 06:06:31 2011
+++ rtems/c/src/lib/libbsp/i386/shared/comm/uart.c      Thu Oct 13 07:18:39 2011
</font><font color='#997700'>@@ -110,8 +110,6 @@
</font>   int hwFlow
 )
 {
<font color='#880000'>-  unsigned char tmp;
-
</font>   /* Sanity check */
   assert(uart == BSP_UART_COM1 || uart == BSP_UART_COM2);
 
<font color='#997700'>@@ -156,9 +154,9 @@
</font>   uwrite(uart, IER, 0);
 
   /* Read status to clear them */
<font color='#880000'>-  tmp = uread(uart, LSR);
-  tmp = uread(uart, RBR);
-  tmp = uread(uart, MSR);
</font><font color='#000088'>+  uread(uart, LSR);
+  uread(uart, RBR);
+  uread(uart, MSR);
</font> 
   /* Remember state */
   uart_data[uart].baud       = baud;
</pre>
<p> </p>
<a name='cs2'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-10-13 Ralf Corsépius <ralf.corsepius@rtems.org>

        * support/include/primode.h: New.
        * Makefile.am: Add support/include/primode.h
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/ChangeLog.diff?r1=text&tr1=1.190&r2=text&tr2=1.191&diff_format=h">M</a></td><td width='1%'>1.191</td><td width='100%'>testsuites/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/Makefile.am.diff?r1=text&tr1=1.14&r2=text&tr2=1.15&diff_format=h">M</a></td><td width='1%'>1.15</td><td width='100%'>testsuites/Makefile.am</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/testsuites/support/include/primode.h?rev=1.1&content-type=text/vnd.viewcvs-markup">A</a></td><td width='1%'><font color="#000088">1.1</font></td><td width='100%'><font color="#000088">testsuites/support/include/primode.h</font></td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/testsuites/ChangeLog:1.190 rtems/testsuites/ChangeLog:1.191
--- rtems/testsuites/ChangeLog:1.190    Thu Sep 29 21:58:15 2011
+++ rtems/testsuites/ChangeLog  Thu Oct 13 08:08:12 2011
</font><font color='#997700'>@@ -1,8 +1,14 @@
</font><font color='#000088'>+2011-10-13    Ralf Corsépius <ralf.corsepius@rtems.org>
+
+       * support/include/primode.h: New.
+       * Makefile.am: Add support/include/primode.h
+
</font> 2011-09-30        Ralf Corsépius <ralf.corsepius@rtems.org>
 
        * support/include/tmacros.h: Remove PRItime_t.
 
 2011-09-30     Ralf Corsépius <ralf.corsepius@rtems.org>
<font color='#000088'>+
</font>   * support/include/pritime.h: New.
        * Makefile.am: Add support/include/pritime.h
 

<font color='#006600'>diff -u rtems/testsuites/Makefile.am:1.14 rtems/testsuites/Makefile.am:1.15
--- rtems/testsuites/Makefile.am:1.14   Thu Sep 29 21:31:25 2011
+++ rtems/testsuites/Makefile.am        Thu Oct 13 08:08:12 2011
</font><font color='#997700'>@@ -12,6 +12,7 @@
</font> noinst_HEADERS += support/include/test_support.h
 noinst_HEADERS += support/include/tmacros.h
 noinst_HEADERS += support/include/pritime.h
<font color='#000088'>+noinst_HEADERS += support/include/primode.h
</font> 
 SUBDIRS = @subdirs@
 

<font color='#006600'>diff -u /dev/null rtems/testsuites/support/include/primode.h:1.1
--- /dev/null   Thu Oct 13 08:12:04 2011
+++ rtems/testsuites/support/include/primode.h  Thu Oct 13 08:08:12 2011
</font><font color='#997700'>@@ -0,0 +1,30 @@
</font><font color='#000088'>+/*
+ * Copyright (c) 2011 by
+ * Ralf Corsépius, Ulm, Germany. All rights reserved.
+ *
+ * Permission to use, copy, modify, and distribute this software
+ * is freely granted, provided that this notice is preserved.
+ */
+
+/*
+ * Helper macro to print "time_t"
+ */
+
+#ifndef _PRIMODE_H
+#define _PRIMODE_H
+
+#include <inttypes.h>
+
+#ifndef SIZEOF_MODE_T
+#error "missing SIZEOF_MODE_T"
+#endif
+
+#if SIZEOF_MODE_T == 8
+#define PRIomode_t PRIo64
+#elif SIZEOF_MODE_T == 4
+#define PRIomode_t PRIo32
+#else
+#error "unsupported size of mode_t"
+#endif
+
+#endif
</font></pre>
<p> </p>

<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>