diff options
author | Andreas Färber <afaerber@suse.de> | 2012-01-27 20:08:52 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-01-27 14:55:36 -0600 |
commit | 0f36036c5c1ce322119f62e0be49c6328ee29573 (patch) | |
tree | 50340aa9c2c1a4a61374e8b9372810e916e02791 | |
parent | 73093354418602a2ff5e43cb91a21b17fbf047d8 (diff) | |
download | qemu-0f36036c5c1ce322119f62e0be49c6328ee29573.zip qemu-0f36036c5c1ce322119f62e0be49c6328ee29573.tar.gz qemu-0f36036c5c1ce322119f62e0be49c6328ee29573.tar.bz2 |
unin_pci: Fix typos in device names
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 <afaerber@suse.de>
Cc: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r-- | hw/unin_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/unin_pci.c b/hw/unin_pci.c index 2b394c0..9822353 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, }; |