diff options
author | Michal Simek | 2019-10-15 13:06:32 +0200 |
---|---|---|
committer | Michal Simek | 2019-10-24 13:37:03 +0200 |
commit | 3e5476c6cde940536360946ea5672d9b6f048add (patch) | |
tree | aa8c0d2bd95f05a1dd961aecdbe0c8920fdc56c0 /board/xilinx | |
parent | 2ce5641df0cd44c20c9049b9eb57908c8c811781 (diff) |
ARM: zynq: Remove unused board_early_init_f()
board_early_init_f added by commit e6cc3b25d721
("arm: zynq: Wire watchdog internals") is no longer needed that's why
remove it also with Kconfig enabling.
Fixes: ccd063e9812a ("watchdog: Move watchdog_dev to data section (BSS may not be cleared)")
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'board/xilinx')
-rw-r--r-- | board/xilinx/zynq/board.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/board/xilinx/zynq/board.c b/board/xilinx/zynq/board.c index 7cfe69db693..8a216ed619b 100644 --- a/board/xilinx/zynq/board.c +++ b/board/xilinx/zynq/board.c @@ -19,13 +19,6 @@ DECLARE_GLOBAL_DATA_PTR; -#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_BOARD_EARLY_INIT_F) -int board_early_init_f(void) -{ - return 0; -} -#endif - int board_init(void) { return 0; |