[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 04/23] hw/ppc/e500: Remove unused "irqs" parameter
From: |
Bernhard Beschow |
Subject: |
[PATCH 04/23] hw/ppc/e500: Remove unused "irqs" parameter |
Date: |
Mon, 23 Sep 2024 11:29:57 +0200 |
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
---
hw/ppc/e500.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/ppc/e500.c b/hw/ppc/e500.c
index 32996c188e..228287b457 100644
--- a/hw/ppc/e500.c
+++ b/hw/ppc/e500.c
@@ -825,7 +825,7 @@ static DeviceState
*ppce500_init_mpic_qemu(PPCE500MachineState *pms,
}
static DeviceState *ppce500_init_mpic_kvm(const PPCE500MachineClass *pmc,
- IrqLines *irqs, Error **errp)
+ Error **errp)
{
#ifdef CONFIG_KVM
DeviceState *dev;
@@ -865,7 +865,7 @@ static DeviceState *ppce500_init_mpic(PPCE500MachineState
*pms,
Error *err = NULL;
if (kvm_kernel_irqchip_allowed()) {
- dev = ppce500_init_mpic_kvm(pmc, irqs, &err);
+ dev = ppce500_init_mpic_kvm(pmc, &err);
}
if (kvm_kernel_irqchip_required() && !dev) {
error_reportf_err(err,
--
2.46.1
- Re: [PATCH 01/23] hw/ppc/e500: Do not leak struct boot_info, (continued)
- [PATCH 02/23] hw/ppc/e500: Reduce scope of env pointer, Bernhard Beschow, 2024/09/23
- [PATCH 03/23] hw/ppc/e500: Prefer QOM cast, Bernhard Beschow, 2024/09/23
- [PATCH 04/23] hw/ppc/e500: Remove unused "irqs" parameter,
Bernhard Beschow <=
- [PATCH 05/23] hw/ppc/e500: Add missing device tree properties to i2c controller node, Bernhard Beschow, 2024/09/23
- [PATCH 06/23] hw/ppc/e500: Use SysBusDevice API to access TYPE_CCSR's internal resources, Bernhard Beschow, 2024/09/23
- [PATCH 07/23] hw/ppc/e500: Extract ppce500_ccsr.c, Bernhard Beschow, 2024/09/23
- [PATCH 08/23] hw/ppc/ppce500_ccsr: Log access to unimplemented registers, Bernhard Beschow, 2024/09/23