2018-03-09 02:58:40

by Vaibhav Murkute

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

Fixed a coding style issue.

Signed-off-by: Vaibhav Murkute <[email protected]>
---
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



2018-03-09 09:54:11

by Stefan Hajnoczi

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

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

Reviewed-by: Stefan Hajnoczi <[email protected]>


Attachments:
(No filename) (312.00 B)
signature.asc (465.00 B)
Download all attachments

2018-03-09 16:41:08

by David Miller

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

From: Vaibhav Murkute <[email protected]>
Date: Fri, 9 Mar 2018 08:26:03 +0530

> Fixed a coding style issue.
>
> Signed-off-by: Vaibhav Murkute <[email protected]>

Applied to net-next, thanks.