From: Cédric Le Goater Date: Tue, 19 Feb 2019 14:25:30 +0000 (+0100) Subject: ppc/xive: xive does not have a POWER7 interrupt model X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3dbe65c17890e4beefe9812590c723e17e611852;p=qemu.git ppc/xive: xive does not have a POWER7 interrupt model 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 --- 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;