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.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/arch/cris/kernel/devicetree.c b/arch/cris/kernel/devicetree.c
deleted file mode 100644
index 36e1c658229f..000000000000
--- a/arch/cris/kernel/devicetree.c
+++ /dev/null
@@ -1,15 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0
-#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);
-}