aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/bluetooth/l2cap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/l2cap.c b/net/bluetooth/l2cap.c
index 46f22640a337..401011a53c73 100644
--- a/net/bluetooth/l2cap.c
+++ b/net/bluetooth/l2cap.c
@@ -3611,7 +3611,7 @@ static inline int l2cap_data_channel(struct l2cap_conn *conn, u16 cid, struct sk
3611 if (pi->expected_tx_seq == tx_seq) 3611 if (pi->expected_tx_seq == tx_seq)
3612 pi->expected_tx_seq = (pi->expected_tx_seq + 1) % 64; 3612 pi->expected_tx_seq = (pi->expected_tx_seq + 1) % 64;
3613 else 3613 else
3614 pi->expected_tx_seq = tx_seq + 1; 3614 pi->expected_tx_seq = (tx_seq + 1) % 64;
3615 3615
3616 l2cap_sar_reassembly_sdu(sk, skb, control); 3616 l2cap_sar_reassembly_sdu(sk, skb, control);
3617 3617