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

Commit efd50290 authored by Maks Naumov's avatar Maks Naumov Committed by David S. Miller
Browse files

irda: Fix rd_frame control field initialization in irlap_send_rd_frame()

parent 8d21797d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -622,7 +622,7 @@ void irlap_send_rd_frame(struct irlap_cb *self)
	frame = (struct rd_frame *)skb_put(tx_skb, 2);

	frame->caddr = self->caddr;
	frame->caddr = RD_RSP | PF_BIT;
	frame->control = RD_RSP | PF_BIT;

	irlap_queue_xmit(self, tx_skb);
}