diff options
author | Hugo Villeneuve <hugo.villeneuve@lyrtech.com> | 2008-09-16 17:07:53 -0400 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-10-13 14:49:17 +0200 |
commit | 6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5 (patch) | |
tree | 50e4ef1e34b0a3409edb94a019fb9e40bb700275 /board | |
parent | d977a57356657ba241256231efca32828a5822f9 (diff) | |
download | u-boot-imx-6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5.zip u-boot-imx-6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5.tar.gz u-boot-imx-6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5.tar.bz2 |
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 <hugo.villeneuve@lyrtech.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/davinci/sffsdr/sffsdr.c | 4 |
1 files changed, 0 insertions, 4 deletions
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); } |