vhost-vdpa: fix indentation in vdpa_ops
authorStefano Garzarella <sgarzare@redhat.com>
Wed, 16 Sep 2020 15:26:34 +0000 (17:26 +0200)
committerLaurent Vivier <laurent@vivier.eu>
Wed, 23 Sep 2020 17:05:52 +0000 (19:05 +0200)
This patch fixes wrong indentation of some vdpa_ops fields introduced
with the initial commit 108a64818e ("vhost-vdpa: introduce vhost-vdpa
backend")

Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
Reviewed-by: Li Qiang <liq3ea@gmail.com>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20200916152634.56917-1-sgarzare@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
hw/virtio/vhost-vdpa.c

index 4580f3efd8a2460314f0a1abb26672e4de33c591..e123837a55ded50703a157d92ac336cba0a538e5 100644 (file)
@@ -469,6 +469,6 @@ const VhostOps vdpa_ops = {
         .vhost_send_device_iotlb_msg = NULL,
         .vhost_dev_start = vhost_vdpa_dev_start,
         .vhost_get_device_id = vhost_vdpa_get_device_id,
-         .vhost_vq_get_addr = vhost_vdpa_vq_get_addr,
-         .vhost_force_iommu = vhost_vdpa_force_iommu,
+        .vhost_vq_get_addr = vhost_vdpa_vq_get_addr,
+        .vhost_force_iommu = vhost_vdpa_force_iommu,
 };