public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] [PATCH] 82550_eeprom: Fix error: lvalue required as increment operand
@ 2008-05-17 12:43 Jean-Christophe PLAGNIOL-VILLARD
  2008-05-17 17:48 ` Joakim Tjernlund
  2008-05-18 20:49 ` Wolfgang Denk
  0 siblings, 2 replies; 4+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-05-17 12:43 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
 examples/82559_eeprom.c |   11 ++++++++---
 1 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/examples/82559_eeprom.c b/examples/82559_eeprom.c
index 1a121d4..a56edd4 100644
--- a/examples/82559_eeprom.c
+++ b/examples/82559_eeprom.c
@@ -53,9 +53,14 @@ static inline unsigned short swap16(unsigned short x)
 
 static inline void *memcpy(void *dst, const void *src, unsigned int len)
 {
-	void * ret = dst;
-	while (len-- > 0) *((char *)dst)++ = *((char *)src)++;
-	return ret;
+	char * ret = dst;
+
+	while (len-- > 0) {
+		*ret++ = *((char *)src);
+		src++;
+	}
+
+	return (void *)ret;
 }
 
 /* The EEPROM commands include the alway-set leading bit. */
-- 
1.5.5.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-05-18 20:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-17 12:43 [U-Boot-Users] [PATCH] 82550_eeprom: Fix error: lvalue required as increment operand Jean-Christophe PLAGNIOL-VILLARD
2008-05-17 17:48 ` Joakim Tjernlund
2008-05-18 20:50   ` Wolfgang Denk
2008-05-18 20:49 ` Wolfgang Denk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox