4afee42560
gcc-5 handles inline without static differently and that makes uboot-mxs fail to build. Remove the inline so it gets exported and can be used in other functions. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 47533
11 lines
320 B
Diff
11 lines
320 B
Diff
--- a/arch/arm/cpu/arm926ejs/mxs/mxs.c
|
|
+++ b/arch/arm/cpu/arm926ejs/mxs/mxs.c
|
|
@@ -24,7 +24,7 @@
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
/* Lowlevel init isn't used on i.MX28, so just have a dummy here */
|
|
-inline void lowlevel_init(void) {}
|
|
+void lowlevel_init(void) {}
|
|
|
|
void reset_cpu(ulong ignored) __attribute__((noreturn));
|
|
|