From nobody Thu Sep 19 01:39:43 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; dkim=fail; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (209.51.188.17 [209.51.188.17]) by mx.zohomail.com with SMTPS id 1549271459697220.10107040053742; Mon, 4 Feb 2019 01:10:59 -0800 (PST) Received: from localhost ([127.0.0.1]:39030 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gqaHC-0007PC-ML for importer@patchew.org; Mon, 04 Feb 2019 04:10:50 -0500 Received: from eggs.gnu.org ([209.51.188.92]:38226) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gqa8d-0000ZP-Pi for qemu-devel@nongnu.org; Mon, 04 Feb 2019 04:02:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gqa8X-0007RD-AC for qemu-devel@nongnu.org; Mon, 04 Feb 2019 04:01:59 -0500 Received: from ozlabs.org ([203.11.71.1]:54227) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gqa8Q-0007CG-7k; Mon, 04 Feb 2019 04:01:49 -0500 Received: by ozlabs.org (Postfix, from userid 1007) id 43tMC64dgJz9sNf; Mon, 4 Feb 2019 20:01:36 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gibson.dropbear.id.au; s=201602; t=1549270898; bh=0hMogiidEV9fA8Yy8m5ieyNpxnPdfQIv+8pBF2aw7eA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=RTl+Dz+lT6AC3bQeQYACiUMbGzxScm1PpmazdPanoNgaENwfeUfSbwSqomzxT0Mee BDcMwFl0es5bdLVByBC9R7DvqAgDLJWkefSiYdhf5p0oCC66nA4GYHoP8fvwbFvoT7 gi49HR9CJmGMGssingwFaC7pH21dtAaxJqxhElQ4= From: David Gibson To: peter.maydell@linaro.org Date: Mon, 4 Feb 2019 20:00:55 +1100 Message-Id: <20190204090124.26191-9-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190204090124.26191-1-david@gibson.dropbear.id.au> References: <20190204090124.26191-1-david@gibson.dropbear.id.au> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 203.11.71.1 Subject: [Qemu-devel] [PULL 08/37] ppc/xive: fix remaining XiveFabric names X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: lvivier@redhat.com, qemu-devel@nongnu.org, groug@kaod.org, spopovyc@redhat.com, qemu-ppc@nongnu.org, clg@kaod.org, David Gibson Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail-DKIM: fail (Header signature does not verify) Content-Type: text/plain; charset="utf-8" From: C=C3=A9dric Le Goater Signed-off-by: C=C3=A9dric Le Goater Reviewed-by: Greg Kurz Signed-off-by: David Gibson --- hw/intc/xive.c | 6 +++--- include/hw/ppc/xive.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/hw/intc/xive.c b/hw/intc/xive.c index a3cb0cf0e3..7f567a57d2 100644 --- a/hw/intc/xive.c +++ b/hw/intc/xive.c @@ -1576,9 +1576,9 @@ static const TypeInfo xive_end_source_info =3D { }; =20 /* - * XIVE Fabric + * XIVE Notifier */ -static const TypeInfo xive_fabric_info =3D { +static const TypeInfo xive_notifier_info =3D { .name =3D TYPE_XIVE_NOTIFIER, .parent =3D TYPE_INTERFACE, .class_size =3D sizeof(XiveNotifierClass), @@ -1587,7 +1587,7 @@ static const TypeInfo xive_fabric_info =3D { static void xive_register_types(void) { type_register_static(&xive_source_info); - type_register_static(&xive_fabric_info); + type_register_static(&xive_notifier_info); type_register_static(&xive_router_info); type_register_static(&xive_end_source_info); type_register_static(&xive_tctx_info); diff --git a/include/hw/ppc/xive.h b/include/hw/ppc/xive.h index ec23253ba4..5d31c801ee 100644 --- a/include/hw/ppc/xive.h +++ b/include/hw/ppc/xive.h @@ -145,7 +145,7 @@ #include "hw/ppc/xive_regs.h" =20 /* - * XIVE Fabric (Interface between Source and Router) + * XIVE Notifier (Interface between Source and Router) */ =20 typedef struct XiveNotifier { --=20 2.20.1