Revert "fdt: Properly handle "no-map" field in the memory region"
authorQuentin Perret <qperret@google.com>
Wed, 12 May 2021 12:30:38 +0000 (12:30 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 22 May 2021 08:40:29 +0000 (10:40 +0200)
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>
drivers/of/fdt.c

index f90b626269ab627022e51505c5b3f3d432c37862..e9360d5cbcbacc21445617d0b170cfd97a8eec17 100644 (file)
@@ -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);
 }