aboutsummaryrefslogtreecommitdiffstats
path: root/arch/cris/kernel/devicetree.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/cris/kernel/devicetree.c')
-rw-r--r--arch/cris/kernel/devicetree.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/cris/kernel/devicetree.c b/arch/cris/kernel/devicetree.c
new file mode 100644
index 000000000000..53ff8d73e7e1
--- /dev/null
+++ b/arch/cris/kernel/devicetree.c
@@ -0,0 +1,14 @@
+#include <linux/init.h>
+#include <linux/bootmem.h>
+#include <linux/printk.h>
+
+void __init early_init_dt_add_memory_arch(u64 base, u64 size)
+{
+ pr_err("%s(%llx, %llx)\n",
+ __func__, base, size);
+}
+
+void * __init early_init_dt_alloc_memory_arch(u64 size, u64 align)
+{
+ return alloc_bootmem_align(size, align);
+}