]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - post/drivers/memory.c
core: add ofnode_get_by_phandle() api
[people/ms/u-boot.git] / post / drivers / memory.c
index 89725fabbe5174e83ac01ad2d4a10c518c6d53da..b410502873ad1753f2a739367e6aac158fdd73e8 100644 (file)
@@ -170,14 +170,7 @@ DECLARE_GLOBAL_DATA_PTR;
  */
 static void move64(const unsigned long long *src, unsigned long long *dest)
 {
-#if defined(CONFIG_MPC8260)
-       asm ("lfd  0, 0(3)\n\t" /* fpr0   =  *scr       */
-        "stfd 0, 0(4)"         /* *dest  =  fpr0       */
-        : : : "fr0" );         /* Clobbers fr0         */
-    return;
-#else
        *dest = *src;
-#endif
 }
 
 /*