]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - arch/cris/kernel/devicetree.c
Merge branch 'work.whack-a-mole' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-bionic-kernel.git] / arch / cris / kernel / devicetree.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/init.h>
3 #include <linux/bootmem.h>
4 #include <linux/printk.h>
5
6 void __init early_init_dt_add_memory_arch(u64 base, u64 size)
7 {
8 pr_err("%s(%llx, %llx)\n",
9 __func__, base, size);
10 }
11
12 void * __init early_init_dt_alloc_memory_arch(u64 size, u64 align)
13 {
14 return alloc_bootmem_align(size, align);
15 }