9
0
Fork 0

pbl: remove start_barebox() stub

PBL never calls start_barebox().  If it does, it is a bug.
Without this stub function, we can detect such a bug at link time.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Masahiro Yamada 2015-02-12 11:04:50 +09:00 committed by Sascha Hauer
parent c0225222c1
commit 84fcb11b02
1 changed files with 0 additions and 6 deletions

View File

@ -13,9 +13,3 @@ void __noreturn panic(const char *fmt, ...)
{
while(1);
}
void __noreturn start_barebox(void)
{
/* Should never be here in the pbl */
hang();
}