summary refs log tree commit diff stats
path: root/hw/ppc/spapr_cpu_core.c
diff options
context:
space:
mode:
authorGreg Kurz <groug@kaod.org>2017-06-08 15:42:41 +0200
committerDavid Gibson <david@gibson.dropbear.id.au>2017-06-09 12:12:34 +1000
commitad265631c0a0addc06ec3c4f133e746f4dcc872a (patch)
tree9fdf4cf7b3005fa6311613c536d2a1a5a70dca80 /hw/ppc/spapr_cpu_core.c
parent3b954105074b6e8ba38b609007a4c0a2f76e4d71 (diff)
downloadfocaccia-qemu-ad265631c0a0addc06ec3c4f133e746f4dcc872a.tar.gz
focaccia-qemu-ad265631c0a0addc06ec3c4f133e746f4dcc872a.zip
xics: introduce macros for ICP/ICS link properties
These properties are part of the XICS API. They deserve to appear
explicitely in the XICS header file.

Signed-off-by: Greg Kurz <groug@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw/ppc/spapr_cpu_core.c')
-rw-r--r--hw/ppc/spapr_cpu_core.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/ppc/spapr_cpu_core.c b/hw/ppc/spapr_cpu_core.c
index 029a14120e..e81879c7ca 100644
--- a/hw/ppc/spapr_cpu_core.c
+++ b/hw/ppc/spapr_cpu_core.c
@@ -145,7 +145,8 @@ static void spapr_cpu_core_realize_child(Object *child, Error **errp)
     obj = object_new(spapr->icp_type);
     object_property_add_child(OBJECT(cpu), "icp", obj, &error_abort);
     object_unref(obj);
-    object_property_add_const_link(obj, "xics", OBJECT(spapr), &error_abort);
+    object_property_add_const_link(obj, ICP_PROP_XICS, OBJECT(spapr),
+                                   &error_abort);
     object_property_set_bool(obj, true, "realized", &local_err);
     if (local_err) {
         goto error;