[POWERPC] bootwrapper: Add a fatal error helper

Add a macro fatal that calls printf then exit.  User must include stdio.h.

Typically replaces 3 lines with 1, although I added back some whitespace.

Signed-off-by: Milton Miller <miltonm@bga.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
Milton Miller
2007-03-21 09:02:44 -06:00
committed by Paul Mackerras
parent 3771f2d9a4
commit 6a923216aa
4 changed files with 28 additions and 47 deletions

View File

@@ -212,10 +212,9 @@ static void *of_vmlinux_alloc(unsigned long size)
{
void *p = malloc(size);
if (!p) {
printf("Can't allocate memory for kernel image!\n\r");
exit();
}
if (!p)
fatal("Can't allocate memory for kernel image!\n\r");
return p;
}