Skip to content
Snippets Groups Projects
Commit 60cba5a5 authored by Andres Salomon's avatar Andres Salomon Committed by Grant Likely
Browse files

x86: OLPC: have prom_early_alloc BUG rather than return NULL


..similar to what sparc's prom_early_alloc does.

Signed-off-by: default avatarAndres Salomon <dilinger@queued.net>
Signed-off-by: default avatarGrant Likely <grant.likely@secretlab.ca>
parent 8aaccf7f
No related branches found
No related tags found
No related merge requests found
......@@ -140,8 +140,7 @@ void * __init prom_early_alloc(unsigned long size)
* wasted bootmem) and hand off chunks of it to callers.
*/
res = alloc_bootmem(chunk_size);
if (!res)
return NULL;
BUG_ON(!res);
prom_early_allocated += chunk_size;
memset(res, 0, chunk_size);
free_mem = chunk_size;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment