mirror of https://gitee.com/openkylin/linux.git
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:
parent
f2ce39828a
commit
33e5971358
|
@ -398,8 +398,7 @@ static int hci_dev_session_init(struct nfc_hci_dev *hdev)
|
|||
nfc_hci_disconnect_all_gates(hdev);
|
||||
|
||||
exit:
|
||||
if (skb)
|
||||
kfree_skb(skb);
|
||||
kfree_skb(skb);
|
||||
|
||||
return r;
|
||||
}
|
||||
|
|
|
@ -241,8 +241,7 @@ static void nfc_shdlc_rcv_i_frame(struct nfc_shdlc *shdlc,
|
|||
}
|
||||
|
||||
exit:
|
||||
if (skb)
|
||||
kfree_skb(skb);
|
||||
kfree_skb(skb);
|
||||
}
|
||||
|
||||
static void nfc_shdlc_rcv_ack(struct nfc_shdlc *shdlc, int y_nr)
|
||||
|
|
Loading…
Reference in New Issue