diff options
author | Simon Glass <sjg@chromium.org> | 2017-03-28 10:27:22 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-04-05 13:52:52 -0400 |
commit | 75efc34bfa80dff27f98d8ce13237fba4c54ea8f (patch) | |
tree | 004d52e91a07f644ea84901d85d38c0778bb4ae3 /common/board_f.c | |
parent | 26345552d65f9891879d62b0b0a427716f0e662b (diff) |
board_f: Remove adjust_sdram_tbs_8xx() from the init sequence
We can just call this from the only place that needs it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'common/board_f.c')
-rw-r--r-- | common/board_f.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/common/board_f.c b/common/board_f.c index 4b5ef1fae3..0c19742214 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -835,10 +835,6 @@ static const init_fnc_t init_sequence_f[] = { init_timebase, #elif defined(CONFIG_PPC) get_clocks, /* get CPU and bus clocks (etc.) */ -#if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \ - && !defined(CONFIG_TQM885D) - adjust_sdram_tbs_8xx, -#endif /* TODO: can we rename this to timer_init()? */ init_timebase, #endif /* CONFIG_8xx_CPUCLK_DEFAULT */ |