diff options
| author | Wolfgang Denk <wd@pollux.(none)> | 2005-12-12 16:06:05 +0100 | 
|---|---|---|
| committer | Wolfgang Denk <wd@pollux.(none)> | 2005-12-12 16:06:05 +0100 | 
| commit | 7481266e4e4a1488ab197cc7beecd6eda0c34ffb (patch) | |
| tree | 815742a284bfb6ccdd47df0e317e61baa7322645 /examples/eepro100_eeprom.c | |
| parent | a889bd27ef2a9c01eb5b10d067765545781efa0a (diff) | |
| download | olio-uboot-2014.01-7481266e4e4a1488ab197cc7beecd6eda0c34ffb.tar.xz olio-uboot-2014.01-7481266e4e4a1488ab197cc7beecd6eda0c34ffb.zip | |
Diffstat (limited to 'examples/eepro100_eeprom.c')
| -rw-r--r-- | examples/eepro100_eeprom.c | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/examples/eepro100_eeprom.c b/examples/eepro100_eeprom.c index 020c31d2f..a52e68d4e 100644 --- a/examples/eepro100_eeprom.c +++ b/examples/eepro100_eeprom.c @@ -79,7 +79,10 @@ static inline short inw(long addr)  static inline void *memcpy(void *dst, const void *src, unsigned int len)  {  	char *ret = dst; -	while (len-- > 0) *(ret)++ = *((char *)src)++; +	while (len-- > 0) { +		*ret++ = *((char *)src); +		src++; +	}  	return (void *)ret;  } |