From 3dbe65c17890e4beefe9812590c723e17e611852 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Le=20Goater?= Date: Tue, 19 Feb 2019 15:25:30 +0100 Subject: [PATCH] ppc/xive: xive does not have a POWER7 interrupt model MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Patch "target/ppc: Add POWER9 external interrupt model" should have removed the section covering PPC_FLAGS_INPUT_POWER7. Signed-off-by: Cédric 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) env = &cpu->env; switch (PPC_INPUT(env)) { - case PPC_FLAGS_INPUT_POWER7: - tctx->output = env->irq_inputs[POWER7_INPUT_INT]; - break; case PPC_FLAGS_INPUT_POWER9: tctx->output = env->irq_inputs[POWER9_INPUT_INT]; break;