]> xenbits.xensource.com Git - seabios.git/commitdiff
virtio: Minor - replace tab characters with space
authorKevin O'Connor <kevin@koconnor.net>
Sun, 18 Oct 2015 15:27:50 +0000 (11:27 -0400)
committerKevin O'Connor <kevin@koconnor.net>
Sat, 24 Oct 2015 12:09:46 +0000 (08:09 -0400)
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
src/hw/virtio-blk.c

index 94485e2ac0a288659ed88931a209e6d054288f43..20a79ebbae26eaa48a5a8e32fbc129d6ffe08e71 100644 (file)
@@ -211,8 +211,8 @@ virtio_blk_setup(void)
     struct pci_device *pci;
     foreachpci(pci) {
         if (pci->vendor != PCI_VENDOR_ID_REDHAT_QUMRANET ||
-           (pci->device != PCI_DEVICE_ID_VIRTIO_BLK_09 &&
-            pci->device != PCI_DEVICE_ID_VIRTIO_BLK_10))
+            (pci->device != PCI_DEVICE_ID_VIRTIO_BLK_09 &&
+             pci->device != PCI_DEVICE_ID_VIRTIO_BLK_10))
             continue;
         init_virtio_blk(pci);
     }