From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N8X5A-0002sW-5s for qemu-devel@nongnu.org; Thu, 12 Nov 2009 05:39:16 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N8X53-0002lQ-Tm for qemu-devel@nongnu.org; Thu, 12 Nov 2009 05:39:14 -0500 Received: from [199.232.76.173] (port=56135 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N8X53-0002lE-MU for qemu-devel@nongnu.org; Thu, 12 Nov 2009 05:39:09 -0500 Received: from mx1.redhat.com ([209.132.183.28]:15903) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N8X53-0003dn-79 for qemu-devel@nongnu.org; Thu, 12 Nov 2009 05:39:09 -0500 Date: Thu, 12 Nov 2009 12:36:36 +0200 From: "Michael S. Tsirkin" Message-ID: <20091112103636.GL3785@redhat.com> References: <1258005528-25383-1-git-send-email-yamahata@valinux.co.jp> <1258005528-25383-19-git-send-email-yamahata@valinux.co.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1258005528-25383-19-git-send-email-yamahata@valinux.co.jp> Subject: [Qemu-devel] Re: [PATCH 18/20] pci: fix pci_config_get_io_base(). List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Isaku Yamahata Cc: qemu-devel@nongnu.org On Thu, Nov 12, 2009 at 02:58:46PM +0900, Isaku Yamahata wrote: > fix typo in pci_config_get_io_base(). > > Signed-off-by: Isaku Yamahata Acked-by: Michael S. Tsirkin > --- > hw/pci.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/hw/pci.c b/hw/pci.c > index dce445a..d1b884a 100644 > --- a/hw/pci.c > +++ b/hw/pci.c > @@ -629,7 +629,7 @@ static uint32_t pci_config_get_io_base(PCIDevice *d, > > val = ((uint32_t)d->config[base] & PCI_IO_RANGE_MASK) << 8; > if (d->config[base] & PCI_IO_RANGE_TYPE_32) { > - val |= (uint32_t)pci_get_word(d->config + PCI_IO_BASE_UPPER16) << 16; > + val |= (uint32_t)pci_get_word(d->config + base_upper16) << 16; > } > return val; > } > -- > 1.6.0.2