From: Dinh Nguyen Date: Wed, 15 Apr 2015 21:44:31 +0000 (-0500) Subject: arm: socfpga: spl: Add s_init stub X-Git-Tag: v2015.07-rc1~61^2~7 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a74732b611affbce1f1fb81f895f17f797276683;p=oweals%2Fu-boot.git arm: socfpga: spl: Add s_init stub Add a stub s_init function in the board file. The reason why the stub function is needed is that most of the work is now being done in board_init_f(), there is no need for the SPL to do anything s_init(). However, since lowlevel_init() is still branching to s_init(), we need stub function for now, until lowlevel_init() morphs into s_init(). Signed-off-by: Dinh Nguyen --- diff --git a/board/altera/socfpga/socfpga.c b/board/altera/socfpga/socfpga.c index 20d221641b..a1dbc492c9 100644 --- a/board/altera/socfpga/socfpga.c +++ b/board/altera/socfpga/socfpga.c @@ -18,6 +18,8 @@ DECLARE_GLOBAL_DATA_PTR; +void s_init(void) {} + /* * Miscellaneous platform dependent initialisations */