|
@@ -244,7 +244,7 @@ static struct sk_buff *bcsp_prepare_pkt(struct bcsp_struct *bcsp, u8 *data,
|
|
if (rel) {
|
|
if (rel) {
|
|
hdr[0] |= 0x80 + bcsp->msgq_txseq;
|
|
hdr[0] |= 0x80 + bcsp->msgq_txseq;
|
|
BT_DBG("Sending packet with seqno %u", bcsp->msgq_txseq);
|
|
BT_DBG("Sending packet with seqno %u", bcsp->msgq_txseq);
|
|
- bcsp->msgq_txseq = ++(bcsp->msgq_txseq) & 0x07;
|
|
|
|
|
|
+ bcsp->msgq_txseq = (bcsp->msgq_txseq + 1) & 0x07;
|
|
}
|
|
}
|
|
|
|
|
|
if (bcsp->use_crc)
|
|
if (bcsp->use_crc)
|