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

2018-03-09 Thread David Miller
From: Vaibhav Murkute 
Date: Fri,  9 Mar 2018 08:26:03 +0530

> Fixed a coding style issue.
> 
> Signed-off-by: Vaibhav Murkute 

Applied to net-next, thanks.


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

2018-03-09 Thread Stefan Hajnoczi
On Fri, Mar 09, 2018 at 08:26:03AM +0530, Vaibhav Murkute wrote:
> Fixed a coding style issue.
> 
> Signed-off-by: Vaibhav Murkute 
> ---
>  drivers/vhost/vsock.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Reviewed-by: Stefan Hajnoczi 


signature.asc
Description: PGP signature


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

2018-03-08 Thread Vaibhav Murkute
Fixed a coding style issue.

Signed-off-by: Vaibhav Murkute 
---
 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