Merge tag 'sound-4.8-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai...
[deliverable/linux.git] / arch / cris / kernel / devicetree.c
1 #include <linux/init.h>
2 #include <linux/bootmem.h>
3 #include <linux/printk.h>
4
5 void __init early_init_dt_add_memory_arch(u64 base, u64 size)
6 {
7 pr_err("%s(%llx, %llx)\n",
8 __func__, base, size);
9 }
10
11 void * __init early_init_dt_alloc_memory_arch(u64 size, u64 align)
12 {
13 return alloc_bootmem_align(size, align);
14 }
This page took 0.071815 seconds and 5 git commands to generate.