From: Hugo Villeneuve Date: Tue, 16 Sep 2008 21:07:53 +0000 (-0400) Subject: ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board. X-Git-Tag: v2008.10-rc3~19 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5;p=platform%2Fkernel%2Fu-boot.git ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board. This is no longer necessary now that the GD_FLG_RELOC flag is set for all ARM boards. Signed-off-by: Hugo Villeneuve --- diff --git a/board/davinci/sffsdr/sffsdr.c b/board/davinci/sffsdr/sffsdr.c index f47ba0f..6e878eb 100644 --- a/board/davinci/sffsdr/sffsdr.c +++ b/board/davinci/sffsdr/sffsdr.c @@ -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); }