From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mike Christie Date: Wed, 07 Oct 2020 20:54:58 +0000 Subject: [PATCH 13/16] vhost poll: fix coding style Message-Id: <1602104101-5592-14-git-send-email-michael.christie@oracle.com> List-Id: References: <1602104101-5592-1-git-send-email-michael.christie@oracle.com> In-Reply-To: <1602104101-5592-1-git-send-email-michael.christie@oracle.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: martin.petersen@oracle.com, linux-scsi@vger.kernel.org, target-devel@vger.kernel.org, mst@redhat.com, jasowang@redhat.com, pbonzini@redhat.com, stefanha@redhat.com, virtualization@lists.linux-foundation.org We use like 3 coding styles in this struct. Switch to just tabs. Signed-off-by: Mike Christie --- drivers/vhost/vhost.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/vhost/vhost.h b/drivers/vhost/vhost.h index a91be8a..2bbe85f 100644 --- a/drivers/vhost/vhost.h +++ b/drivers/vhost/vhost.h @@ -34,12 +34,12 @@ struct vhost_worker { /* Poll a file (eventfd or socket) */ /* Note: there's nothing vhost specific about this structure. */ struct vhost_poll { - poll_table table; - wait_queue_head_t *wqh; - wait_queue_entry_t wait; - struct vhost_work work; - __poll_t mask; - struct vhost_dev *dev; + poll_table table; + wait_queue_head_t *wqh; + wait_queue_entry_t wait; + struct vhost_work work; + __poll_t mask; + struct vhost_dev *dev; }; void vhost_work_init(struct vhost_work *work, vhost_work_fn_t fn); -- 1.8.3.1