Skip to content

Commit

Permalink
irda: Fix rd_frame control field initialization in irlap_send_rd_frame()
Browse files Browse the repository at this point in the history
Signed-off-by: Maks Naumov <maksqwe1@ukr.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
maksqwe authored and davem330 committed Aug 14, 2014
1 parent 8d21797 commit efd5029
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/irda/irlap_frame.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit efd5029

Please sign in to comment.