From: Tom Rini Date: Mon, 1 Oct 2012 21:44:31 +0000 (-0700) Subject: SPL: Remove setting GD_FLG_RELOC in preloader_console_init() X-Git-Tag: v2013.01-rc1~354 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=868444faa0327756ffe4655b2f8678a5d3b5c505;p=u-boot SPL: Remove setting GD_FLG_RELOC in preloader_console_init() We have not strictly speaking relocated at this point, do not claim that we have. This is not required for output. Signed-off-by: Tom Rini --- diff --git a/common/spl/spl.c b/common/spl/spl.c index 40a7acaeaf..0d829c0f12 100644 --- a/common/spl/spl.c +++ b/common/spl/spl.c @@ -233,7 +233,6 @@ void board_init_r(gd_t *dummy1, ulong dummy2) void preloader_console_init(void) { gd->bd = &bdata; - gd->flags |= GD_FLG_RELOC; gd->baudrate = CONFIG_BAUDRATE; serial_init(); /* serial communications setup */