From patchwork Fri Jan 27 19:08:52 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Andreas_F=C3=A4rber?= X-Patchwork-Id: 138279 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id E77DFB6EE8 for ; Sat, 28 Jan 2012 06:11:16 +1100 (EST) Received: from localhost ([::1]:49148 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RqrCc-0007nK-QO for incoming@patchwork.ozlabs.org; Fri, 27 Jan 2012 14:11:14 -0500 Received: from eggs.gnu.org ([140.186.70.92]:42977) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RqrCW-0007n2-Bv for qemu-devel@nongnu.org; Fri, 27 Jan 2012 14:11:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RqrCV-0004B6-0o for qemu-devel@nongnu.org; Fri, 27 Jan 2012 14:11:08 -0500 Received: from cantor2.suse.de ([195.135.220.15]:54811 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RqrCU-0004Au-R8; Fri, 27 Jan 2012 14:11:06 -0500 Received: from relay1.suse.de (unknown [195.135.220.254]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx2.suse.de (Postfix) with ESMTP id 7DBE690B1D; Fri, 27 Jan 2012 20:11:05 +0100 (CET) From: =?UTF-8?q?Andreas=20F=C3=A4rber?= To: qemu-devel@nongnu.org Date: Fri, 27 Jan 2012 20:08:52 +0100 Message-Id: <1327691332-7066-1-git-send-email-afaerber@suse.de> X-Mailer: git-send-email 1.7.7 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 X-Received-From: 195.135.220.15 Cc: Anthony Liguori , qemu-ppc@nongnu.org, =?UTF-8?q?Andreas=20F=C3=A4rber?= , Alexander Graf Subject: [Qemu-devel] [PATCH] unin_pci: Fix typos in device names X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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 --- 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, };