Bluetooth: Fix errors reported by checkpatch.pl
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi> Reviewed-by: João Paulo Rechi Vita <jprvita@profusion.mobi> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
parent
44651b85cc
commit
59203a21a5
|
@ -1490,9 +1490,8 @@ static inline int l2cap_skbuff_fromiovec(struct sock *sk, struct msghdr *msg, in
|
||||||
struct sk_buff **frag;
|
struct sk_buff **frag;
|
||||||
int err, sent = 0;
|
int err, sent = 0;
|
||||||
|
|
||||||
if (memcpy_fromiovec(skb_put(skb, count), msg->msg_iov, count)) {
|
if (memcpy_fromiovec(skb_put(skb, count), msg->msg_iov, count))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
}
|
|
||||||
|
|
||||||
sent += count;
|
sent += count;
|
||||||
len -= count;
|
len -= count;
|
||||||
|
@ -3347,7 +3346,7 @@ static void l2cap_add_to_srej_queue(struct sock *sk, struct sk_buff *skb, u8 tx_
|
||||||
if (skb_queue_is_last(SREJ_QUEUE(sk), next_skb))
|
if (skb_queue_is_last(SREJ_QUEUE(sk), next_skb))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
} while((next_skb = skb_queue_next(SREJ_QUEUE(sk), next_skb)));
|
} while ((next_skb = skb_queue_next(SREJ_QUEUE(sk), next_skb)));
|
||||||
|
|
||||||
__skb_queue_tail(SREJ_QUEUE(sk), skb);
|
__skb_queue_tail(SREJ_QUEUE(sk), skb);
|
||||||
}
|
}
|
||||||
|
@ -3446,7 +3445,7 @@ static void l2cap_check_srej_gap(struct sock *sk, u8 tx_seq)
|
||||||
struct sk_buff *skb;
|
struct sk_buff *skb;
|
||||||
u16 control;
|
u16 control;
|
||||||
|
|
||||||
while((skb = skb_peek(SREJ_QUEUE(sk)))) {
|
while ((skb = skb_peek(SREJ_QUEUE(sk)))) {
|
||||||
if (bt_cb(skb)->tx_seq != tx_seq)
|
if (bt_cb(skb)->tx_seq != tx_seq)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -3465,7 +3464,7 @@ static void l2cap_resend_srejframe(struct sock *sk, u8 tx_seq)
|
||||||
struct srej_list *l, *tmp;
|
struct srej_list *l, *tmp;
|
||||||
u16 control;
|
u16 control;
|
||||||
|
|
||||||
list_for_each_entry_safe(l,tmp, SREJ_LIST(sk), list) {
|
list_for_each_entry_safe(l, tmp, SREJ_LIST(sk), list) {
|
||||||
if (l->tx_seq == tx_seq) {
|
if (l->tx_seq == tx_seq) {
|
||||||
list_del(&l->list);
|
list_del(&l->list);
|
||||||
kfree(l);
|
kfree(l);
|
||||||
|
|
Loading…
Reference in New Issue