[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PULL 2/8] spapr_pci: kill useless variable in rtas_ibm_chang
From: |
David Gibson |
Subject: |
[Qemu-ppc] [PULL 2/8] spapr_pci: kill useless variable in rtas_ibm_change_msi() |
Date: |
Mon, 29 Feb 2016 17:58:25 +1100 |
From: Greg Kurz <address@hidden>
The num local variable is initialized to zero and has no writer.
Signed-off-by: Greg Kurz <address@hidden>
Signed-off-by: David Gibson <address@hidden>
---
hw/ppc/spapr_pci.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/hw/ppc/spapr_pci.c b/hw/ppc/spapr_pci.c
index cca9257..19dd6db 100644
--- a/hw/ppc/spapr_pci.c
+++ b/hw/ppc/spapr_pci.c
@@ -275,7 +275,7 @@ static void rtas_ibm_change_msi(PowerPCCPU *cpu,
sPAPRMachineState *spapr,
unsigned int req_num = rtas_ld(args, 4); /* 0 == remove all */
unsigned int seq_num = rtas_ld(args, 5);
unsigned int ret_intr_type;
- unsigned int irq, max_irqs = 0, num = 0;
+ unsigned int irq, max_irqs = 0;
sPAPRPHBState *phb = NULL;
PCIDevice *pdev = NULL;
spapr_pci_msi *msi;
@@ -316,10 +316,10 @@ static void rtas_ibm_change_msi(PowerPCCPU *cpu,
sPAPRMachineState *spapr,
xics_free(spapr->icp, msi->first_irq, msi->num);
if (msi_present(pdev)) {
- spapr_msi_setmsg(pdev, 0, false, 0, num);
+ spapr_msi_setmsg(pdev, 0, false, 0, 0);
}
if (msix_present(pdev)) {
- spapr_msi_setmsg(pdev, 0, true, 0, num);
+ spapr_msi_setmsg(pdev, 0, true, 0, 0);
}
g_hash_table_remove(phb->msi, &config_addr);
--
2.5.0
- [Qemu-ppc] [PULL 0/8] ppc-for-2.6 queue 20160229, David Gibson, 2016/02/29
- [Qemu-ppc] [PULL 1/8] spapr_rng: disable hotpluggability, David Gibson, 2016/02/29
- [Qemu-ppc] [PULL 4/8] spapr: disable vmdesc submission for old machines, David Gibson, 2016/02/29
- [Qemu-ppc] [PULL 7/8] migration: allow machine to enforce configuration section migration, David Gibson, 2016/02/29
- [Qemu-ppc] [PULL 3/8] spapr_pci: fix irq leak in RTAS ibm, change-msi, David Gibson, 2016/02/29
- [Qemu-ppc] [PULL 8/8] xics: report errors with the QEMU Error API, David Gibson, 2016/02/29
- [Qemu-ppc] [PULL 2/8] spapr_pci: kill useless variable in rtas_ibm_change_msi(),
David Gibson <=
- [Qemu-ppc] [PULL 5/8] dbdma: warn when using unassigned channel, David Gibson, 2016/02/29
- [Qemu-ppc] [PULL 6/8] spapr: skip configuration section during migration of older machines, David Gibson, 2016/02/29
- Re: [Qemu-ppc] [PULL 0/8] ppc-for-2.6 queue 20160229, Peter Maydell, 2016/02/29