Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ff3c1b1a authored by Vaibhav Murkute's avatar Vaibhav Murkute Committed by David S. Miller
Browse files

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



Fixed a coding style issue.

Signed-off-by: default avatarVaibhav Murkute <vaibhavmurkute88@gmail.com>
Reviewed-by: default avatarStefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent feaf751d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;