summaryrefslogtreecommitdiff
path: root/drivers/of
diff options
context:
space:
mode:
authorQuentin Perret <qperret@google.com>2021-05-12 12:30:38 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-05-22 10:40:29 +0200
commit51222297de3e39e68f481c328b22a8305b3aae9b (patch)
tree2e11d6fc5eb8f78fa8b08374b4978561bafbd65b /drivers/of
parent146fe282efc59c001bcf226bb35e93f34415ecc1 (diff)
Revert "fdt: Properly handle "no-map" field in the memory region"
This reverts commit 86ac82a7c708acf4738c396228be7b8fdaae4d99. It is not really a fix, and the backport misses dependencies, which breaks existing platforms. Reported-by: Alexandre TORGUE <alexandre.torgue@foss.st.com> Signed-off-by: Quentin Perret <qperret@google.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/of')
-rw-r--r--drivers/of/fdt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c
index f90b626269ab..e9360d5cbcba 100644
--- a/drivers/of/fdt.c
+++ b/drivers/of/fdt.c
@@ -1159,7 +1159,7 @@ int __init __weak early_init_dt_reserve_memory_arch(phys_addr_t base,
phys_addr_t size, bool nomap)
{
if (nomap)
- return memblock_mark_nomap(base, size);
+ return memblock_remove(base, size);
return memblock_reserve(base, size);
}