From 47656d98bd721ef92f944f2c17938e8605c66698 Mon Sep 17 00:00:00 2001 From: Hannes Schmelzer Date: Wed, 10 Apr 2019 14:13:12 +0200 Subject: [PATCH] board/BuR/common: cosmetic: move 'overwrite_console' up to more related stuff Signed-off-by: Hannes Schmelzer --- board/BuR/common/common.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/board/BuR/common/common.c b/board/BuR/common/common.c index 513872a7d7..28ebb84595 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 #include @@ -359,7 +364,3 @@ void set_mux_conf_regs(void) } #endif /* CONFIG_SPL_BUILD && CONFIG_AM33XX */ -int overwrite_console(void) -{ - return 1; -} -- 2.25.1