diff options
| author | Tom Rini <trini@ti.com> | 2012-10-01 14:44:31 -0700 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2012-10-15 11:53:47 -0700 | 
| commit | 868444faa0327756ffe4655b2f8678a5d3b5c505 (patch) | |
| tree | dabc723da0dd3cc22cf0a42f79b3f99b7d8ac4c6 | |
| parent | c26420bbb569f5f192b5b74ab1439320ec59b349 (diff) | |
| download | olio-uboot-2014.01-868444faa0327756ffe4655b2f8678a5d3b5c505.tar.xz olio-uboot-2014.01-868444faa0327756ffe4655b2f8678a5d3b5c505.zip | |
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 <trini@ti.com>
| -rw-r--r-- | common/spl/spl.c | 1 | 
1 files changed, 0 insertions, 1 deletions
| diff --git a/common/spl/spl.c b/common/spl/spl.c index 40a7acaea..0d829c0f1 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 */ |