]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - examples/standalone/eepro100_eeprom.c
standalone eepro100_eeprom: fix build error
[karo-tx-uboot.git] / examples / standalone / eepro100_eeprom.c
index 2b15d05adbb287c988899bc2ad09a3e0cbbc935b..771a7e887e4e882340d70c73457f57c926acfadf 100644 (file)
@@ -18,7 +18,6 @@
  */
 
 /* avoid unnecessary memcpy function */
-#define __HAVE_ARCH_MEMCPY
 #define _PPC_STRING_H_
 
 #include <common.h>
@@ -77,7 +76,7 @@ static inline short inw(long addr)
        return swap16(*(volatile short *)(addr));
 }
 
-static inline void *memcpy(void *dst, const void *src, unsigned int len)
+void *memcpy(void *dst, const void *src, unsigned int len)
 {
        char *ret = dst;
        while (len-- > 0) {