NFC: Remove pointless conditional before HCI kfree_skb()

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
Wei Yongjun 2012-08-28 21:02:40 +08:00 committed by Samuel Ortiz
parent f2ce39828a
commit 33e5971358
2 changed files with 2 additions and 4 deletions

View file

@ -398,8 +398,7 @@ static int hci_dev_session_init(struct nfc_hci_dev *hdev)
nfc_hci_disconnect_all_gates(hdev); nfc_hci_disconnect_all_gates(hdev);
exit: exit:
if (skb) kfree_skb(skb);
kfree_skb(skb);
return r; return r;
} }

View file

@ -241,8 +241,7 @@ static void nfc_shdlc_rcv_i_frame(struct nfc_shdlc *shdlc,
} }
exit: exit:
if (skb) kfree_skb(skb);
kfree_skb(skb);
} }
static void nfc_shdlc_rcv_ack(struct nfc_shdlc *shdlc, int y_nr) static void nfc_shdlc_rcv_ack(struct nfc_shdlc *shdlc, int y_nr)