From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38271) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ciMKI-0001PP-1G for qemu-devel@nongnu.org; Mon, 27 Feb 2017 09:30:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ciMKE-0007q4-1a for qemu-devel@nongnu.org; Mon, 27 Feb 2017 09:30:58 -0500 Received: from 13.mo6.mail-out.ovh.net ([188.165.56.124]:42472) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ciMKD-0007po-Pa for qemu-devel@nongnu.org; Mon, 27 Feb 2017 09:30:53 -0500 Received: from player761.ha.ovh.net (b9.ovh.net [213.186.33.59]) by mo6.mail-out.ovh.net (Postfix) with ESMTP id 9B83688909 for ; Mon, 27 Feb 2017 15:30:51 +0100 (CET) From: =?UTF-8?q?C=C3=A9dric=20Le=20Goater?= Date: Mon, 27 Feb 2017 15:29:20 +0100 Message-Id: <1488205773-30436-14-git-send-email-clg@kaod.org> In-Reply-To: <1488205773-30436-1-git-send-email-clg@kaod.org> References: <1488205773-30436-1-git-send-email-clg@kaod.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH v4 13/26] ppc/xics: remove the XICS list of ICS List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: David Gibson Cc: qemu-ppc@nongnu.org, qemu-devel@nongnu.org, =?UTF-8?q?C=C3=A9dric=20Le=20Goater?= This is not used anymore. Signed-off-by: C=C3=A9dric Le Goater Reviewed-by: David Gibson --- hw/intc/xics.c | 8 -------- hw/ppc/spapr.c | 1 - include/hw/ppc/xics.h | 2 -- 3 files changed, 11 deletions(-) diff --git a/hw/intc/xics.c b/hw/intc/xics.c index 97775c2b61e5..76b50dc7722a 100644 --- a/hw/intc/xics.c +++ b/hw/intc/xics.c @@ -146,13 +146,6 @@ static void xics_common_reset(DeviceState *d) } } =20 -static void xics_common_initfn(Object *obj) -{ - XICSState *xics =3D XICS_COMMON(obj); - - QLIST_INIT(&xics->ics); -} - static void xics_common_class_init(ObjectClass *oc, void *data) { DeviceClass *dc =3D DEVICE_CLASS(oc); @@ -165,7 +158,6 @@ static const TypeInfo xics_common_info =3D { .parent =3D TYPE_DEVICE, .instance_size =3D sizeof(XICSState), .class_size =3D sizeof(XICSStateClass), - .instance_init =3D xics_common_initfn, .class_init =3D xics_common_class_init, }; =20 diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c index 1706d52adec1..70b9618309fc 100644 --- a/hw/ppc/spapr.c +++ b/hw/ppc/spapr.c @@ -123,7 +123,6 @@ static XICSState *try_create_xics(sPAPRMachineState *= spapr, if (err) { goto error; } - QLIST_INSERT_HEAD(&xics->ics, ics, list); =20 xics->ss =3D g_malloc0(nr_servers * sizeof(ICPState)); xics->nr_servers =3D nr_servers; diff --git a/include/hw/ppc/xics.h b/include/hw/ppc/xics.h index db2bb04de831..15c52f9d9eda 100644 --- a/include/hw/ppc/xics.h +++ b/include/hw/ppc/xics.h @@ -83,7 +83,6 @@ struct XICSState { /*< public >*/ uint32_t nr_servers; ICPState *ss; - QLIST_HEAD(, ICSState) ics; }; =20 #define TYPE_ICP "icp" @@ -154,7 +153,6 @@ struct ICSState { qemu_irq *qirqs; ICSIRQState *irqs; XICSState *xics; - QLIST_ENTRY(ICSState) list; }; =20 static inline bool ics_valid_irq(ICSState *ics, uint32_t nr) --=20 2.7.4