From: Isaku Yamahata Date: Thu, 12 Nov 2009 05:58:43 +0000 (+0900) Subject: pci: clean up of pci_update_mappings() X-Git-Tag: v0.12.0-rc0~228^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ec50344230aad67a867ac59e4a0cd7233149484c;p=thirdparty%2Fqemu.git pci: clean up of pci_update_mappings() This patch converts r->size == 0 to !r_size. Signed-off-by: Isaku Yamahata Signed-off-by: Michael S. Tsirkin --- diff --git a/hw/pci.c b/hw/pci.c index 64cf0a8a50d..d6f647cc256 100644 --- a/hw/pci.c +++ b/hw/pci.c @@ -733,7 +733,7 @@ static void pci_update_mappings(PCIDevice *d) r = &d->io_regions[i]; /* this region isn't registered */ - if (r->size == 0) + if (!r->size) continue; if (r->type & PCI_BASE_ADDRESS_SPACE_IO) {