<!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-09)</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-10 Ralf Corsépius <ralf.corsepius@rtems.org>

        * libchip/network/sonic.c: Don't cast pointers to uint32_t.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/ChangeLog.diff?r1=text&tr1=1.555&r2=text&tr2=1.556&diff_format=h">M</a></td><td width='1%'>1.556</td><td width='100%'>c/src/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/libchip/network/sonic.c.diff?r1=text&tr1=1.17&r2=text&tr2=1.18&diff_format=h">M</a></td><td width='1%'>1.18</td><td width='100%'>c/src/libchip/network/sonic.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/c/src/ChangeLog:1.555 rtems/c/src/ChangeLog:1.556
--- rtems/c/src/ChangeLog:1.555 Sun Oct  9 10:37:53 2011
+++ rtems/c/src/ChangeLog       Sun Oct  9 21:12:46 2011
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2011-10-10    Ralf Corsépius <ralf.corsepius@rtems.org>
+
+       * libchip/network/sonic.c: Don't cast pointers to uint32_t.
+
</font> 2011-10-09        Ralf Corsépius <ralf.corsepius@rtems.org>
 
        * libchip/network/greth.c, libchip/network/open_eth.c

<font color='#006600'>diff -u rtems/c/src/libchip/network/sonic.c:1.17 rtems/c/src/libchip/network/sonic.c:1.18
--- rtems/c/src/libchip/network/sonic.c:1.17    Sun Oct  9 10:37:53 2011
+++ rtems/c/src/libchip/network/sonic.c Sun Oct  9 21:12:46 2011
</font><font color='#997700'>@@ -116,8 +116,8 @@
</font> /*
  * Macros for manipulating 32-bit pointers as 16-bit fragments
  */
<font color='#880000'>-#define LSW(p)   ((uint16_t)((uint32_t)(p)))
-#define MSW(p)   ((uint16_t)((uint32_t)(p) >> 16))
</font><font color='#000088'>+#define LSW(p)   ((uint16_t)((uintptr_t)(p)))
+#define MSW(p)   ((uint16_t)((uintptr_t)(p) >> 16))
</font> #define PTR(m,l) ((void*)(((uint16_t)(m)<<16)|(uint16_t)(l)))
 
 /*
</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>