From: Eric Auger Date: Mon, 28 Apr 2025 10:25:28 +0000 (+0200) Subject: hw/acpi/ged: Fix wrong identation X-Git-Tag: v10.1.0-rc0~97^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=353ad624f5b2920c98bca0b00d901271d5fd2684;p=thirdparty%2Fqemu.git hw/acpi/ged: Fix wrong identation Signed-off-by: Eric Auger Reviewed-by: Gustavo Romero Message-ID: <20250428102628.378046-3-eric.auger@redhat.com> Signed-off-by: Philippe Mathieu-Daudé --- diff --git a/hw/acpi/generic_event_device.c b/hw/acpi/generic_event_device.c index d8adfea6480..7a62f8d5bca 100644 --- a/hw/acpi/generic_event_device.c +++ b/hw/acpi/generic_event_device.c @@ -458,11 +458,11 @@ static void acpi_ged_initfn(Object *obj) * container for memory hotplug IO and expose it as GED sysbus * MMIO so that boards can map it separately. */ - memory_region_init(&s->container_memhp, OBJECT(dev), "memhp container", - MEMORY_HOTPLUG_IO_LEN); - sysbus_init_mmio(sbd, &s->container_memhp); - acpi_memory_hotplug_init(&s->container_memhp, OBJECT(dev), - &s->memhp_state, 0); + memory_region_init(&s->container_memhp, OBJECT(dev), "memhp container", + MEMORY_HOTPLUG_IO_LEN); + sysbus_init_mmio(sbd, &s->container_memhp); + acpi_memory_hotplug_init(&s->container_memhp, OBJECT(dev), + &s->memhp_state, 0); memory_region_init_io(&ged_st->regs, obj, &ged_regs_ops, ged_st, TYPE_ACPI_GED "-regs", ACPI_GED_REG_COUNT);