Fix implicit declarations of done_cache_as_ram_main by adding a
prototype for these assembler functions. Affected boards: digitallogic/msm800sev pcengines/alix1c Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4140 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
f5f0c69628
commit
dbda3a9919
|
@ -114,5 +114,6 @@ void cache_as_ram_main(void)
|
|||
/* we are finding the return does not work on this board. Explicitly call the label that is
|
||||
* after the call to us. This is gross, but sometimes at this level it is the only way out
|
||||
*/
|
||||
void done_cache_as_ram_main(void);
|
||||
done_cache_as_ram_main();
|
||||
}
|
||||
|
|
|
@ -206,5 +206,6 @@ void cache_as_ram_main(void)
|
|||
* call the label that is after the call to us. This is gross, but
|
||||
* sometimes at this level it is the only way out.
|
||||
*/
|
||||
void done_cache_as_ram_main(void);
|
||||
done_cache_as_ram_main();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue