From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45945) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X2Gej-00039e-Np for qemu-devel@nongnu.org; Wed, 02 Jul 2014 05:16:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X2Gec-0001wR-99 for qemu-devel@nongnu.org; Wed, 02 Jul 2014 05:16:45 -0400 Received: from mx1.redhat.com ([209.132.183.28]:2454) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X2Gec-0001w4-0V for qemu-devel@nongnu.org; Wed, 02 Jul 2014 05:16:38 -0400 From: Igor Mammedov Date: Wed, 2 Jul 2014 11:16:33 +0200 Message-Id: <1404292593-12716-1-git-send-email-imammedo@redhat.com> Subject: [Qemu-devel] [PATCH for-2.1] acpi: fix typo in memory hotplug MMIO region name List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, mst@redhat.com Reported-by: Sergey Fionov Signed-off-by: Igor Mammedov --- hw/acpi/memory_hotplug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/acpi/memory_hotplug.c b/hw/acpi/memory_hotplug.c index 38ca415..ed39241 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); } -- 1.9.3