aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorCédric Le Goater <clg@kaod.org>2019-02-19 15:25:30 +0100
committerDavid Gibson <david@gibson.dropbear.id.au>2019-02-26 09:21:25 +1100
commit3dbe65c17890e4beefe9812590c723e17e611852 (patch)
tree50308c5e0f31b4d83f3149da096a8daa10c9bbc5 /hw
parent9bcb5b29419c79f0249280aaed80d40d7d798eeb (diff)
downloadqemu-3dbe65c17890e4beefe9812590c723e17e611852.zip
qemu-3dbe65c17890e4beefe9812590c723e17e611852.tar.gz
qemu-3dbe65c17890e4beefe9812590c723e17e611852.tar.bz2
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 <clg@kaod.org> Message-Id: <20190219142530.17807-1-clg@kaod.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw')
-rw-r--r--hw/intc/xive.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/hw/intc/xive.c b/hw/intc/xive.c
index 425aa97..daa7bad 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;