diff options
author | Marek Vasut <marex@denx.de> | 2014-12-30 21:31:21 +0100 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-03-04 23:07:04 +0100 |
commit | d7a73038f5e912c4d088ee839d336bd0c8a4eb5f (patch) | |
tree | bf487a70db37d9c9ee84628148ef5a9c8df2128e | |
parent | 7287d5f091c97a38a8820b45aaee123d6bbef12f (diff) | |
download | u-boot-imx-d7a73038f5e912c4d088ee839d336bd0c8a4eb5f.zip u-boot-imx-d7a73038f5e912c4d088ee839d336bd0c8a4eb5f.tar.gz u-boot-imx-d7a73038f5e912c4d088ee839d336bd0c8a4eb5f.tar.bz2 |
arm: socfpga: Zap board_early_init_f()
Zap this unused empty function, no point in having it.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Chin Liang See <clsee@opensource.altera.com>
Acked-by: Dinh Nguyen <dinguyen@opensource.altera.com>
Acked-by: Pavel Machek <pavel@denx.de>
Reviewed-by: Stefan Roese <sr@denx.de>
Cc: Vince Bridgers <vbridger@opensource.altera.com>
-rw-r--r-- | board/altera/socfpga/socfpga.c | 8 | ||||
-rw-r--r-- | include/configs/socfpga_common.h | 1 |
2 files changed, 0 insertions, 9 deletions
diff --git a/board/altera/socfpga/socfpga.c b/board/altera/socfpga/socfpga.c index 2b2b63d..20d2216 100644 --- a/board/altera/socfpga/socfpga.c +++ b/board/altera/socfpga/socfpga.c @@ -19,14 +19,6 @@ DECLARE_GLOBAL_DATA_PTR; /* - * Initialization function which happen at early stage of c code - */ -int board_early_init_f(void) -{ - return 0; -} - -/* * Miscellaneous platform dependent initialisations */ int board_init(void) diff --git a/include/configs/socfpga_common.h b/include/configs/socfpga_common.h index 59b7f21..6d93472 100644 --- a/include/configs/socfpga_common.h +++ b/include/configs/socfpga_common.h @@ -20,7 +20,6 @@ */ #define CONFIG_DISPLAY_CPUINFO #define CONFIG_DISPLAY_BOARDINFO_LATE -#define CONFIG_BOARD_EARLY_INIT_F #define CONFIG_ARCH_EARLY_INIT_R #define CONFIG_SYS_NO_FLASH #define CONFIG_CLOCKS |