mirror of https://gitee.com/openkylin/qemu.git
arm: Remove CONFIG_FDT conditionals
Now that we know we're compiling with libfdt, we can remove the CONFIG_FDT conditionals. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Edgar E. Iglesias <edgar.iglesias@gmail.com> Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com> Tested-by: Edgar E. Iglesias <edgar.iglesias@gmail.com> Message-id: 1369409217-7553-3-git-send-email-peter.maydell@linaro.org
This commit is contained in:
parent
e169e1e1ae
commit
298c3833db
|
@ -227,7 +227,6 @@ static void set_kernel_args_old(const struct arm_boot_info *info)
|
|||
|
||||
static int load_dtb(hwaddr addr, const struct arm_boot_info *binfo)
|
||||
{
|
||||
#ifdef CONFIG_FDT
|
||||
uint32_t *mem_reg_property;
|
||||
uint32_t mem_reg_propsize;
|
||||
void *fdt = NULL;
|
||||
|
@ -308,12 +307,6 @@ static int load_dtb(hwaddr addr, const struct arm_boot_info *binfo)
|
|||
cpu_physical_memory_write(addr, fdt, size);
|
||||
|
||||
return 0;
|
||||
|
||||
#else
|
||||
fprintf(stderr, "Device tree requested, "
|
||||
"but qemu was compiled without fdt support\n");
|
||||
return -1;
|
||||
#endif
|
||||
}
|
||||
|
||||
static void do_cpu_reset(void *opaque)
|
||||
|
|
Loading…
Reference in New Issue