mirror of
https://github.com/clearlinux/kvmtool.git
synced 2026-08-24 15:07:36 +00:00
kvm tools: Missing braces in BAR index calculation
This patch adds missing braces which were forgotten in 42dfae5
("kvm tools: Use correct size for VESA memory bar").
Reported-by: David Evensky <evensky@dancer.ca.sandia.gov>
Signed-off-by: Sasha Levin <levinsasha928@gmail.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
This commit is contained in:
@@ -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])
|
||||
|
||||
Reference in New Issue
Block a user