From nobody Sun Nov 9 16:22:01 2025 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 (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1551159232185176.40217177791374; Mon, 25 Feb 2019 21:33:52 -0800 (PST) Received: from localhost ([127.0.0.1]:49532 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gyVNF-0002aU-7H for importer@patchew.org; Tue, 26 Feb 2019 00:33:49 -0500 Received: from eggs.gnu.org ([209.51.188.92]:58263) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gyUlN-0005YB-8r for qemu-devel@nongnu.org; Mon, 25 Feb 2019 23:54:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gyUlL-0002y8-91 for qemu-devel@nongnu.org; Mon, 25 Feb 2019 23:54:41 -0500 Received: from ozlabs.org ([2401:3900:2:1::2]:56245) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gyUlJ-0002uO-S5; Mon, 25 Feb 2019 23:54:39 -0500 Received: by ozlabs.org (Postfix, from userid 1007) id 447mfQ25CTz9sPW; Tue, 26 Feb 2019 15:53:16 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gibson.dropbear.id.au; s=201602; t=1551156798; bh=Dl677c2afl4dvmDVF/1/QCI+rk6BaOT97p/H4ALOXjY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bfHeiynxJmtq4fONXb/b8Bsl1KxoX0vH7G2M/uXne8cE4wpZhA1r9fI6hO/zGyEDu XLZjwcDKykfIvffeZIyuqtprtdBtG70a9/wqJLdrBnQnCEdD+b2dlJxZe6L+X4Fs3O wDA1n1JChhanXdrZpXAjMA6yRbKRI4IGMvnmSTdQ= From: David Gibson To: peter.maydell@linaro.org Date: Tue, 26 Feb 2019 15:53:00 +1100 Message-Id: <20190226045304.25618-47-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190226045304.25618-1-david@gibson.dropbear.id.au> References: <20190226045304.25618-1-david@gibson.dropbear.id.au> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2401:3900:2:1::2 Subject: [Qemu-devel] [PULL 46/50] ppc/xive: xive does not have a POWER7 interrupt model 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, gkurz@kaod.org, qemu-devel@nongnu.org, 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 Patch "target/ppc: Add POWER9 external interrupt model" should have removed the section covering PPC_FLAGS_INPUT_POWER7. Signed-off-by: C=C3=A9dric Le Goater Message-Id: <20190219142530.17807-1-clg@kaod.org> Signed-off-by: David Gibson --- hw/intc/xive.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/hw/intc/xive.c b/hw/intc/xive.c index 425aa97ef9..daa7badc84 100644 --- a/hw/intc/xive.c +++ b/hw/intc/xive.c @@ -481,9 +481,6 @@ static void xive_tctx_realize(DeviceState *dev, Error *= *errp) =20 env =3D &cpu->env; switch (PPC_INPUT(env)) { - case PPC_FLAGS_INPUT_POWER7: - tctx->output =3D env->irq_inputs[POWER7_INPUT_INT]; - break; case PPC_FLAGS_INPUT_POWER9: tctx->output =3D env->irq_inputs[POWER9_INPUT_INT]; break; --=20 2.20.1