From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58005) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UzOJt-0001C8-Ts for qemu-devel@nongnu.org; Wed, 17 Jul 2013 05:46:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UzOJp-000103-L6 for qemu-devel@nongnu.org; Wed, 17 Jul 2013 05:46:49 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33229) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UzOJp-0000zv-Dq for qemu-devel@nongnu.org; Wed, 17 Jul 2013 05:46:45 -0400 Date: Wed, 17 Jul 2013 12:48:03 +0300 From: "Michael S. Tsirkin" Message-ID: <1374054430-21966-3-git-send-email-mst@redhat.com> References: <1374054430-21966-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1374054430-21966-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL 2/5] pci: fix BRDIGE typo List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Don Koch From: Don Koch Fix typo in macro name: PCI_CLASS_BRDIGE_PCI_INF_SUB. Signed-off-by: Don Koch Signed-off-by: Michael S. Tsirkin --- hw/pci-bridge/i82801b11.c | 2 +- include/hw/pci/pci_ids.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/pci-bridge/i82801b11.c b/hw/pci-bridge/i82801b11.c index 5807a92..b98bfb0 100644 --- a/hw/pci-bridge/i82801b11.c +++ b/hw/pci-bridge/i82801b11.c @@ -69,7 +69,7 @@ static int i82801b11_bridge_initfn(PCIDevice *d) if (rc < 0) { goto err_bridge; } - pci_config_set_prog_interface(d->config, PCI_CLASS_BRDIGE_PCI_INF_SUB); + pci_config_set_prog_interface(d->config, PCI_CLASS_BRIDGE_PCI_INF_SUB); return 0; err_bridge: diff --git a/include/hw/pci/pci_ids.h b/include/hw/pci/pci_ids.h index 08f8161..d7933bf 100644 --- a/include/hw/pci/pci_ids.h +++ b/include/hw/pci/pci_ids.h @@ -39,7 +39,7 @@ #define PCI_CLASS_BRIDGE_HOST 0x0600 #define PCI_CLASS_BRIDGE_ISA 0x0601 #define PCI_CLASS_BRIDGE_PCI 0x0604 -#define PCI_CLASS_BRDIGE_PCI_INF_SUB 0x01 +#define PCI_CLASS_BRIDGE_PCI_INF_SUB 0x01 #define PCI_CLASS_BRIDGE_OTHER 0x0680 #define PCI_CLASS_COMMUNICATION_SERIAL 0x0700 -- MST