summaryrefslogtreecommitdiff
path: root/common/bootm.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/bootm.c')
-rw-r--r--common/bootm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/bootm.c b/common/bootm.c
index 7ce9420fe0..ade859df1d 100644
--- a/common/bootm.c
+++ b/common/bootm.c
@@ -368,7 +368,7 @@ static int bootm_add_ignore_mpt_to_fdt(void *fdth)
ret = fdt_setprop(fdth, nodeoffset, "ignore_mpt", NULL, 0);
if (ret == -FDT_ERR_NOSPACE) {
- fdt_shrink_to_minimum(fdth);
+ fdt_shrink_to_minimum(fdth, 0);
ret = fdt_setprop(fdth, nodeoffset, "ignore_mpt", NULL, 0);
}