Browse Source

virtio_blk: coding style fixes

Most of our code has
struct foo {
}

Fix two instances where blk is inconsistent.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Michael S. Tsirkin 10 years ago
parent
commit
bb6ec57600
1 changed files with 2 additions and 4 deletions
  1. 2 4
      drivers/block/virtio_blk.c

+ 2 - 4
drivers/block/virtio_blk.c

@@ -28,8 +28,7 @@ struct virtio_blk_vq {
 	char name[VQ_NAME_LEN];
 	char name[VQ_NAME_LEN];
 } ____cacheline_aligned_in_smp;
 } ____cacheline_aligned_in_smp;
 
 
-struct virtio_blk
-{
+struct virtio_blk {
 	struct virtio_device *vdev;
 	struct virtio_device *vdev;
 
 
 	/* The disk structure for the kernel. */
 	/* The disk structure for the kernel. */
@@ -52,8 +51,7 @@ struct virtio_blk
 	struct virtio_blk_vq *vqs;
 	struct virtio_blk_vq *vqs;
 };
 };
 
 
-struct virtblk_req
-{
+struct virtblk_req {
 	struct request *req;
 	struct request *req;
 	struct virtio_blk_outhdr out_hdr;
 	struct virtio_blk_outhdr out_hdr;
 	struct virtio_scsi_inhdr in_hdr;
 	struct virtio_scsi_inhdr in_hdr;