]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board.
authorHugo Villeneuve <hugo.villeneuve@lyrtech.com>
Tue, 16 Sep 2008 21:07:53 +0000 (17:07 -0400)
committerWolfgang Denk <wd@denx.de>
Mon, 13 Oct 2008 12:49:17 +0000 (14:49 +0200)
This is no longer necessary now that the GD_FLG_RELOC flag is set for
all ARM boards.

Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
board/davinci/sffsdr/sffsdr.c

index f47ba0f3bd42535a2d65f2950d173ed924d5c363..6e878eb5722e55dffefbf91605b76be1b4f57f7f 100644 (file)
@@ -170,9 +170,5 @@ int misc_init_r(void)
        if (!eth_hw_init())
                printf("Ethernet init failed\n");
 
-       /* On this platform, U-Boot is copied in RAM by the UBL,
-        * so we are always in the relocated state. */
-       gd->flags |= GD_FLG_RELOC;
-
        return(0);
 }