[PATCH] drivers: vhost: vsock: fixed a brace coding style issue

From: Vaibhav Murkute
Date: Thu Mar 08 2018 - 21:57:40 EST


Fixed a coding style issue.

Signed-off-by: Vaibhav Murkute <vaibhavmurkute88@xxxxxxxxx>
---
drivers/vhost/vsock.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/vhost/vsock.c b/drivers/vhost/vsock.c
index 0d14e2ff19f1..0898dbdbf955 100644
--- a/drivers/vhost/vsock.c
+++ b/drivers/vhost/vsock.c
@@ -61,9 +61,9 @@ static struct vhost_vsock *__vhost_vsock_get(u32 guest_cid)
if (other_cid == 0)
continue;

- if (other_cid == guest_cid) {
+ if (other_cid == guest_cid)
return vsock;
- }
+
}

return NULL;
--
2.15.1