From: Krzysztof Kozlowski Date: Tue, 13 Jun 2017 13:56:58 +0000 (+0100) Subject: hw/arm/exynos: Use type define instead of hard-coded a9mpcore_priv string X-Git-Tag: v2.10.0-rc0~132^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9e883790dd0da73269e3d9f4c250d14ff7ff2d34;p=thirdparty%2Fqemu.git hw/arm/exynos: Use type define instead of hard-coded a9mpcore_priv string Use a define for a9mpcore_priv device type name instead of hard-coded string. Signed-off-by: Krzysztof Kozlowski Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Peter Maydell --- diff --git a/hw/arm/exynos4210.c b/hw/arm/exynos4210.c index 27a7bf28a5a..0050626a696 100644 --- a/hw/arm/exynos4210.c +++ b/hw/arm/exynos4210.c @@ -26,6 +26,7 @@ #include "qemu-common.h" #include "qemu/log.h" #include "cpu.h" +#include "hw/cpu/a9mpcore.h" #include "hw/boards.h" #include "sysemu/sysemu.h" #include "hw/sysbus.h" @@ -211,7 +212,7 @@ Exynos4210State *exynos4210_init(MemoryRegion *system_mem) } /* Private memory region and Internal GIC */ - dev = qdev_create(NULL, "a9mpcore_priv"); + dev = qdev_create(NULL, TYPE_A9MPCORE_PRIV); qdev_prop_set_uint32(dev, "num-cpu", EXYNOS4210_NCPUS); qdev_init_nofail(dev); busdev = SYS_BUS_DEVICE(dev);