diff options
author | Patrick Delaunay <patrick.delaunay@st.com> | 2018-03-13 13:57:00 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-03-16 14:56:00 -0400 |
commit | d6f8771239b15e8a68b38fcde96977db212887bd (patch) | |
tree | 0f88aca5484e8bba0f75e1ced34354adc075c390 /common | |
parent | 71b7564479d9ee867f77c5594fdf03043206c449 (diff) | |
download | u-boot-d6f8771239b15e8a68b38fcde96977db212887bd.tar.gz |
common: move board_f.c prototypes in init.h
Move prototypes for function used in common/board_f.c
from common.h to init.h
Remove weak for arch_reserve_stacks in prototype
(checkpatch issue)
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/board_f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/board_f.c b/common/board_f.c index c6bc53e1bf..4df52f1eb5 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -489,7 +489,7 @@ static int reserve_bootstage(void) return 0; } -int arch_reserve_stacks(void) +__weak int arch_reserve_stacks(void) { return 0; } |