1
0
Fork 0

drivers: vhost: vsock: fixed a brace coding style issue

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>
hifive-unleashed-5.1
Vaibhav Murkute 2018-03-09 08:26:03 +05:30 committed by David S. Miller
parent feaf751d8d
commit ff3c1b1a81
1 changed files with 2 additions and 2 deletions

View File

@ -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;