From 0f36036c5c1ce322119f62e0be49c6328ee29573 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Fri, 27 Jan 2012 20:08:52 +0100 Subject: [PATCH] unin_pci: Fix typos in device names MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commit 999e12bbe85c5dcf49bef13bce4f97399c7105f4 (sysbus: apic: ioapic: convert to QEMU Object Model) introduced two typos, one of which broke the mac99 machine. Signed-off-by: Andreas Färber Cc: Anthony Liguori Signed-off-by: Anthony Liguori --- hw/unin_pci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/unin_pci.c b/hw/unin_pci.c index 2b394c0180..9822353420 100644 --- a/hw/unin_pci.c +++ b/hw/unin_pci.c @@ -415,7 +415,7 @@ static void pci_unin_main_class_init(ObjectClass *klass, void *data) } static DeviceInfo pci_unin_main_info = { - .name = "uni-north-pci-pchost", + .name = "uni-north-pci-pcihost", .size = sizeof(UNINState), .class_init = pci_unin_main_class_init, }; @@ -454,7 +454,7 @@ static void pci_unin_internal_class_init(ObjectClass *klass, void *data) } static DeviceInfo pci_unin_internal_info = { - .name = "uni-north-internal-pci-pichost", + .name = "uni-north-internal-pci-pcihost", .size = sizeof(UNINState), .class_init = pci_unin_internal_class_init, }; -- GitLab