diff mbox

[3/3] virtio: White space cleanup in virtio-9p.c

Message ID 1461659261-26783-4-git-send-email-thuth@redhat.com
State Accepted
Headers show

Commit Message

Thomas Huth April 26, 2016, 8:27 a.m. UTC
Simple cosmetical fix - some lines were indented with spaces instead
of tabs. Change it to be in line with the coding conventions.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 lib/libvirtio/virtio-9p.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
diff mbox

Patch

diff --git a/lib/libvirtio/virtio-9p.c b/lib/libvirtio/virtio-9p.c
index d3b3424..6e9c379 100644
--- a/lib/libvirtio/virtio-9p.c
+++ b/lib/libvirtio/virtio-9p.c
@@ -171,8 +171,8 @@  int virtio_9p_init(struct virtio_device *dev, void *tx_buf, void *rx_buf,
 		return -1;
 	__buf_size = buf_size;
 
-        dprintf("%s : device at %p\n", __func__, dev->base);
-        dprintf("%s : type is %04x\n", __func__, dev->type);
+	dprintf("%s : device at %p\n", __func__, dev->base);
+	dprintf("%s : type is %04x\n", __func__, dev->type);
 
 	virtio_reset_device(dev);
 
@@ -222,11 +222,11 @@  dev_error:
  */
 void virtio_9p_shutdown(struct virtio_device *dev)
 {
-        /* Quiesce device */
-        virtio_set_status(dev, VIRTIO_STAT_FAILED);
+	/* Quiesce device */
+	virtio_set_status(dev, VIRTIO_STAT_FAILED);
 
-        /* Reset device */
-        virtio_reset_device(dev);
+	/* Reset device */
+	virtio_reset_device(dev);
 
 	__buf_size = 0;
 }