diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2015-03-11 15:10:09 +0100 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2015-03-11 18:24:30 +0100 |
commit | 18bf9e2f379334306530cbfd44218748eceaf67d (patch) | |
tree | 8f2bf959704611a42c3342673203b599e5863336 | |
parent | bb72463bc80d90d104a996a111dd8bb39bff58d0 (diff) | |
download | qemu-18bf9e2f379334306530cbfd44218748eceaf67d.zip qemu-18bf9e2f379334306530cbfd44218748eceaf67d.tar.gz qemu-18bf9e2f379334306530cbfd44218748eceaf67d.tar.bz2 |
virtio-scsi: remove empty wrapper for cmd
The anonymous struct only has a single field now, drop the wrapper
structure.
Suggested-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | include/hw/virtio/virtio-scsi.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/hw/virtio/virtio-scsi.h b/include/hw/virtio/virtio-scsi.h index e3f27a6..f93b57d 100644 --- a/include/hw/virtio/virtio-scsi.h +++ b/include/hw/virtio/virtio-scsi.h @@ -134,9 +134,7 @@ typedef struct VirtIOSCSIReq { VirtIOSCSIEvent event; } resp; union { - struct { - VirtIOSCSICmdReq cmd; - } QEMU_PACKED; + VirtIOSCSICmdReq cmd; VirtIOSCSICtrlTMFReq tmf; VirtIOSCSICtrlANReq an; } req; |