aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/of/of_reserved_mem.c
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2021-05-27 14:38:41 -0500
committerRob Herring <robh@kernel.org>2021-06-02 20:59:28 -0500
commit12d55d3b5370448f6568d0031b5e401cc050c29e (patch)
treee9ab679b33f87ab6a572f3e64221e22b6474dd8a /drivers/of/of_reserved_mem.c
parentof: Drop reserved mem dependency on DMA_DECLARE_COHERENT and DMA_CMA (diff)
downloadlinux-dev-12d55d3b5370448f6568d0031b5e401cc050c29e.tar.xz
linux-dev-12d55d3b5370448f6568d0031b5e401cc050c29e.zip
of: Move reserved memory private function declarations
fdt_init_reserved_mem() and fdt_reserved_mem_save_node() are private to the DT code, so move there declarations to of_private.h. There's no need for the dummy functions as CONFIG_OF_RESERVED_MEM is always enabled for CONFIG_OF_EARLY_FLATTREE. Cc: Frank Rowand <frowand.list@gmail.com> Signed-off-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20210527193841.1284169-1-robh@kernel.org
Diffstat (limited to 'drivers/of/of_reserved_mem.c')
-rw-r--r--drivers/of/of_reserved_mem.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/of/of_reserved_mem.c b/drivers/of/of_reserved_mem.c
index 15e2417974d6..4592b71aba5c 100644
--- a/drivers/of/of_reserved_mem.c
+++ b/drivers/of/of_reserved_mem.c
@@ -22,6 +22,8 @@
#include <linux/slab.h>
#include <linux/memblock.h>
+#include "of_private.h"
+
#define MAX_RESERVED_REGIONS 64
static struct reserved_mem reserved_mem[MAX_RESERVED_REGIONS];
static int reserved_mem_count;