diff options
author | Vadim Bendebury <vbendeb@chromium.org> | 2013-04-09 14:06:51 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-04-11 15:40:23 -0400 |
commit | 3d38910151e3d069a164190763c7b03d11f1eec4 (patch) | |
tree | a6a2c35ef5983fc5049042733498629a5becec74 | |
parent | 980464a4fc6d69c080ea02115f05694efe313cd8 (diff) |
Do not call board_early_init_f() twice
Apparently due to a missed rebase conflict resolution
board_early_init_f() is included twice in the list of initialization
functions.
Leave only the first occurrence.
. built and boot an Exynos 5250 target
Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
-rw-r--r-- | common/board_f.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/common/board_f.c b/common/board_f.c index 29b49c3ab6..769889123b 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -788,9 +788,6 @@ static init_fnc_t init_sequence_f[] = { /* TODO: can we rename this to timer_init()? */ init_timebase, #endif -#if defined(CONFIG_BOARD_EARLY_INIT_F) - board_early_init_f, -#endif #ifdef CONFIG_ARM timer_init, /* initialize timer */ #endif |