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

Commit 0767a7fa authored by Samuel Ortiz's avatar Samuel Ortiz Committed by John W. Linville
Browse files

NFC: Set the right LLCP N(R) value for I frames

parent b9a76f1d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -419,7 +419,7 @@ static u8 nfc_llcp_nr(struct sk_buff *pdu)

static void nfc_llcp_set_nrns(struct nfc_llcp_sock *sock, struct sk_buff *pdu)
{
	pdu->data[2] = (sock->send_n << 4) | ((sock->recv_n - 1) % 16);
	pdu->data[2] = (sock->send_n << 4) | (sock->recv_n % 16);
	sock->send_n = (sock->send_n + 1) % 16;
	sock->recv_ack_n = (sock->recv_n - 1) % 16;
}