From: Eduardo Habkost Date: Fri, 4 Sep 2015 18:37:03 +0000 (-0300) Subject: exynos4: Use EXYNOS4210_NCPUS instead of max_cpus on error message X-Git-Tag: v2.5.0-rc0~115^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6aadcc71354bc683fdedd8a3d369095d23095e1c;p=thirdparty%2Fqemu.git exynos4: Use EXYNOS4210_NCPUS instead of max_cpus on error message The code is checking smp_cpus against EXYNOS4210_NCPUS, not against max_cpus, so use EXYNOS4210_NCPUS in the error message for consistency. Signed-off-by: Eduardo Habkost Signed-off-by: Andreas Färber --- diff --git a/hw/arm/exynos4_boards.c b/hw/arm/exynos4_boards.c index d644db1ef91..3f88c4a3302 100644 --- a/hw/arm/exynos4_boards.c +++ b/hw/arm/exynos4_boards.c @@ -100,8 +100,7 @@ static Exynos4210State *exynos4_boards_init_common(MachineState *machine, if (smp_cpus != EXYNOS4210_NCPUS && !qtest_enabled()) { fprintf(stderr, "%s board supports only %d CPU cores. Ignoring smp_cpus" " value.\n", - exynos4_machines[board_type].name, - exynos4_machines[board_type].max_cpus); + exynos4_machines[board_type].name, EXYNOS4210_NCPUS); } exynos4_board_binfo.ram_size = exynos4_board_ram_size[board_type];