diff options
Diffstat (limited to 'device_tree.c')
-rw-r--r-- | device_tree.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/device_tree.c b/device_tree.c index 751538ec1d..dc69232f10 100644 --- a/device_tree.c +++ b/device_tree.c @@ -41,6 +41,7 @@ void *load_device_tree(const char *filename_path, int *sizep) } /* Expand to 2x size to give enough room for manipulation. */ + dt_size += 10000; dt_size *= 2; /* First allocate space in qemu for device tree */ fdt = g_malloc0(dt_size); |