From: Igor Mammedov Date: Wed, 2 Jul 2014 09:16:33 +0000 (+0200) Subject: acpi: fix typo in memory hotplug MMIO region name X-Git-Tag: qemu-xen-4.6.0-rc1~324^2~5 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=22dc50d75838e83b4bb05ae5554728be9f266e87;p=qemu-upstream-4.6-testing.git acpi: fix typo in memory hotplug MMIO region name Reported-by: Sergey Fionov Signed-off-by: Igor Mammedov Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin Reviewed-by: Peter Crosthwaite --- diff --git a/hw/acpi/memory_hotplug.c b/hw/acpi/memory_hotplug.c index 38ca415f6..ed3924126 100644 --- a/hw/acpi/memory_hotplug.c +++ b/hw/acpi/memory_hotplug.c @@ -159,7 +159,7 @@ void acpi_memory_hotplug_init(MemoryRegion *as, Object *owner, state->devs = g_malloc0(sizeof(*state->devs) * state->dev_count); memory_region_init_io(&state->io, owner, &acpi_memory_hotplug_ops, state, - "apci-mem-hotplug", ACPI_MEMORY_HOTPLUG_IO_LEN); + "acpi-mem-hotplug", ACPI_MEMORY_HOTPLUG_IO_LEN); memory_region_add_subregion(as, ACPI_MEMORY_HOTPLUG_BASE, &state->io); }