diff options
author | Hannes Schmelzer | 2019-04-10 14:13:12 +0200 |
---|---|---|
committer | Tom Rini | 2019-04-26 17:51:51 -0400 |
commit | 47656d98bd721ef92f944f2c17938e8605c66698 (patch) | |
tree | e1f500f0f4a5b7929eacfcde49fcc3850057969c | |
parent | ad6be25c19840811e2e9ecd56620a0a1f5415631 (diff) |
board/BuR/common: cosmetic: move 'overwrite_console' up to more related stuff
Signed-off-by: Hannes Schmelzer <hannes.schmelzer@br-automation.com>
-rw-r--r-- | board/BuR/common/common.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/board/BuR/common/common.c b/board/BuR/common/common.c index 513872a7d72..28ebb84595f 100644 --- a/board/BuR/common/common.c +++ b/board/BuR/common/common.c @@ -266,6 +266,11 @@ int ft_board_setup(void *blob, bd_t *bd) return 0; } +int overwrite_console(void) +{ + return 1; +} + #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_AM33XX) #include <asm/arch/hardware.h> #include <asm/arch/omap.h> @@ -359,7 +364,3 @@ void set_mux_conf_regs(void) } #endif /* CONFIG_SPL_BUILD && CONFIG_AM33XX */ -int overwrite_console(void) -{ - return 1; -} |