aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/boot/of.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc/boot/of.c')
-rw-r--r--arch/powerpc/boot/of.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/powerpc/boot/of.c b/arch/powerpc/boot/of.c
index c6f0d9701485..2cec5c17fb60 100644
--- a/arch/powerpc/boot/of.c
+++ b/arch/powerpc/boot/of.c
@@ -212,10 +212,9 @@ static void *of_vmlinux_alloc(unsigned long size)
212{ 212{
213 void *p = malloc(size); 213 void *p = malloc(size);
214 214
215 if (!p) { 215 if (!p)
216 printf("Can't allocate memory for kernel image!\n\r"); 216 fatal("Can't allocate memory for kernel image!\n\r");
217 exit(); 217
218 }
219 return p; 218 return p;
220} 219}
221 220