diff options
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/kernel/prom.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/prom.c b/arch/powerpc/kernel/prom.c index 43c78d74ddcb..5bbbdb29f603 100644 --- a/arch/powerpc/kernel/prom.c +++ b/arch/powerpc/kernel/prom.c | |||
@@ -510,6 +510,11 @@ void __init early_init_dt_add_memory_arch(u64 base, u64 size) | |||
510 | memstart_addr = min((u64)memstart_addr, base); | 510 | memstart_addr = min((u64)memstart_addr, base); |
511 | } | 511 | } |
512 | 512 | ||
513 | u64 __init early_init_dt_alloc_memory_arch(u64 size, u64 align) | ||
514 | { | ||
515 | return lmb_alloc(size, align); | ||
516 | } | ||
517 | |||
513 | #ifdef CONFIG_BLK_DEV_INITRD | 518 | #ifdef CONFIG_BLK_DEV_INITRD |
514 | void __init early_init_dt_setup_initrd_arch(unsigned long start, | 519 | void __init early_init_dt_setup_initrd_arch(unsigned long start, |
515 | unsigned long end) | 520 | unsigned long end) |