Coverity complains of an unused value: CID 1528147: (#1 of 1): Unused value (UNUSED_VALUE) assigned_value: Assigning value -22 to err here, but that stored value is overwritten before it can be used. err = -EINVAL; Fix it by removing the assignment. Signed-off-by: Bharath SM <bharathsm@xxxxxxxxxxxxx> --- net/bluetooth/sco.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/net/bluetooth/sco.c b/net/bluetooth/sco.c index 43daf965a01e..e74bce4e1d6c 100644 --- a/net/bluetooth/sco.c +++ b/net/bluetooth/sco.c @@ -581,9 +581,6 @@ static int sco_sock_connect(struct socket *sock, struct sockaddr *addr, int alen if (sk->sk_state != BT_OPEN && sk->sk_state != BT_BOUND) return -EBADFD; - if (sk->sk_type != SOCK_SEQPACKET) - err = -EINVAL; - lock_sock(sk); /* Set destination address and psm */ bacpy(&sco_pi(sk)->dst, &sa->sco_bdaddr); -- 2.34.1