From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephan Linz Date: Mon, 3 Nov 2003 12:02:29 +0100 Subject: [U-Boot-Users] [PATCH-1/2] LAN91C111 Message-ID: <0311031202290K.02205@pcj86> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi all, in context of one of my emails last week: http://sourceforge.net/mailarchive/forum.php?thread_id=3364771&forum_id=12898 I'm wondering about how many people are using the LAN91C111 driver without significant problems. There is (just was :-) a fat signed/unsigned bug in drivers/smc91111.c which is significant at NIOS plattforms when you are using MAC addresses with address elements above 0x7f. Example: 00:07:ed:0a:a4:7b goes over to 00:07:ed:ff:a4:ff inside the chip. Simple solution: static char smc_mac_addr[] = { . . . }; have to be: static char unsigned smc_mac_addr[6] = { . . . }; In attatchment you will find my smc91111_fix patch. It includes some other minor fixes I've made. This patch has been working successful at NIOS Stratix and Cyclone boards. Please try out and patch CVS tree. Best Regards, -- Mit freundlichen Gruessen Stephan Linz ====================================================================== Stephan Linz Softwareentwicklung MAZeT GmbH Email: mailto:linz at mazet.de G?schwitzer Str. 32 Tel. : (3641) 2809-55 D-07745 Jena Fax : (3641) 2809-12 Besuchen Sie bitte unsere Web-Seiten: http://www.MAZeT.de ====================================================================== -------------- next part -------------- A non-text attachment was scrubbed... Name: u-boot-20031103cvs-smc91111_fix.patch-0 Type: text/x-c Size: 2545 bytes Desc: not available Url : http://lists.denx.de/pipermail/u-boot/attachments/20031103/ce1ac026/attachment.bin