This patch adds missing braces which were forgotten in 42dfae5
("kvm tools: Use correct size for VESA memory bar").

Reported-by: David Evensky <[email protected]>
Signed-off-by: Sasha Levin <[email protected]>
---
 tools/kvm/pci.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/kvm/pci.c b/tools/kvm/pci.c
index 0449aca..523c4c7 100644
--- a/tools/kvm/pci.c
+++ b/tools/kvm/pci.c
@@ -95,7 +95,7 @@ static bool pci_config_data_out(struct ioport *ioport, struct 
kvm *kvm, u16 port
                offset = start + (pci_config_address.register_number << 2);
                if (offset < sizeof(struct pci_device_header)) {
                        void *p = pci_devices[dev_num];
-                       u8 bar = offset - PCI_BAR_OFFSET(0) / (sizeof(u32));
+                       u8 bar = (offset - PCI_BAR_OFFSET(0)) / (sizeof(u32));
                        u32 sz = PCI_IO_SIZE;
 
                        if (bar < 6 && pci_devices[dev_num]->bar_size[bar])
-- 
1.7.6

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to