diff options
author | Simon Glass <sjg@chromium.org> | 2017-01-23 13:31:24 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-01-25 17:38:43 -0500 |
commit | 37b499c43fbf91b65520d7e2bd7bb998c7ba38e2 (patch) | |
tree | 6b4131be57d44fb274ddf59a655d0529d317e495 /common | |
parent | 8f3086aaac00749ce22be205ec01c97597a41b36 (diff) | |
download | u-boot-37b499c43fbf91b65520d7e2bd7bb998c7ba38e2.tar.gz |
Drop CONFIG_WINBOND_83C553
This is not used in U-Boot. Drop this option and associated dead code.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/board_r.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/common/board_r.c b/common/board_r.c index 46a43b97a7..419471cfb8 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -262,17 +262,6 @@ static int initr_pci(void) } #endif -#ifdef CONFIG_WINBOND_83C553 -static int initr_w83c553f(void) -{ - /* - * Initialise the ISA bridge - */ - initialise_w83c553f(); - return 0; -} -#endif - static int initr_barrier(void) { #ifdef CONFIG_PPC @@ -834,9 +823,6 @@ init_fnc_t init_sequence_r[] = { */ initr_pci, #endif -#ifdef CONFIG_WINBOND_83C553 - initr_w83c553f, -#endif #ifdef CONFIG_ARCH_EARLY_INIT_R arch_early_init_r, #endif |