projects
/
platform
/
kernel
/
linux-rpi3.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
feaf751
)
drivers: vhost: vsock: fixed a brace coding style issue
author
Vaibhav Murkute
<vaibhavmurkute88@gmail.com>
Fri, 9 Mar 2018 02:56:03 +0000
(08:26 +0530)
committer
David S. Miller
<davem@davemloft.net>
Fri, 9 Mar 2018 16:39:44 +0000
(11:39 -0500)
Fixed a coding style issue.
Signed-off-by: Vaibhav Murkute <vaibhavmurkute88@gmail.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/vhost/vsock.c
patch
|
blob
|
history
diff --git
a/drivers/vhost/vsock.c
b/drivers/vhost/vsock.c
index
0d14e2f
..
0898dbd
100644
(file)
--- 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;