diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2021-08-11 11:52:28 +0300 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2021-08-15 17:56:03 +0300 |
commit | 18250b43f7b6d0085724bf6fc186f9a107066068 (patch) | |
tree | 928152c83bb89070df361cdcbd93522e0aab36de /include/linux/of_fdt.h | |
parent | 6b2117ad65f1bca9ece6d4b1ee784b42701a2d86 (diff) | |
download | linux-18250b43f7b6d0085724bf6fc186f9a107066068.tar.xz |
of: fdt: Remove early_init_dt_reserve_memory_arch() override capability
Commit e7ae8d174eec0b3b ("MIPS: replace add_memory_region with
memblock") removed the last architecture-specific override of
early_init_dt_reserve_memory_arch().
Convert the common implementation from a weak global function to a
static function.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/be0140a0183ecfd0a3afa4fe6d2d77ed418102f9.1628671897.git.geert+renesas@glider.be
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'include/linux/of_fdt.h')
-rw-r--r-- | include/linux/of_fdt.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/of_fdt.h b/include/linux/of_fdt.h index acf820e88952..3b1500a0116f 100644 --- a/include/linux/of_fdt.h +++ b/include/linux/of_fdt.h @@ -68,8 +68,6 @@ extern void early_init_fdt_reserve_self(void); extern void __init early_init_dt_scan_chosen_arch(unsigned long node); extern void early_init_dt_add_memory_arch(u64 base, u64 size); extern int early_init_dt_mark_hotplug_memory_arch(u64 base, u64 size); -extern int early_init_dt_reserve_memory_arch(phys_addr_t base, phys_addr_t size, - bool no_map); extern u64 dt_mem_next_cell(int s, const __be32 **cellp); /* Early flat tree scan hooks */ |