diff options
author | Mike Christie <michael.christie@oracle.com> | 2021-05-25 12:47:33 -0500 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2021-07-03 04:50:55 -0400 |
commit | d8f35f41e2b47ec94626dec93b47481d93580bfc (patch) | |
tree | f6f702ab64c1afbe8102f044318f1bc778f1cf77 /drivers/vhost/vhost.h | |
parent | efb18e1e50b4dc1719f57089a7df9a8301ec48e4 (diff) | |
download | linux-d8f35f41e2b47ec94626dec93b47481d93580bfc.tar.bz2 |
vhost: fix up vhost_work coding style
Switch from a mix of tabs and spaces to just tabs.
Signed-off-by: Mike Christie <michael.christie@oracle.com>
Link: https://lore.kernel.org/r/20210525174733.6212-6-michael.christie@oracle.com
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'drivers/vhost/vhost.h')
-rw-r--r-- | drivers/vhost/vhost.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/vhost/vhost.h b/drivers/vhost/vhost.h index 24ebb66a4fcf..638bb640d6b4 100644 --- a/drivers/vhost/vhost.h +++ b/drivers/vhost/vhost.h @@ -20,9 +20,9 @@ typedef void (*vhost_work_fn_t)(struct vhost_work *work); #define VHOST_WORK_QUEUED 1 struct vhost_work { - struct llist_node node; - vhost_work_fn_t fn; - unsigned long flags; + struct llist_node node; + vhost_work_fn_t fn; + unsigned long flags; }; /* Poll a file (eventfd or socket) */ |