Commit b1fb0683 authored by Wei Yongjun's avatar Wei Yongjun Committed by Marcel Holtmann

Bluetooth: Remove some pointless conditionals before kfree_skb()

Remove some pointless conditionals before kfree_skb().
Signed-off-by: default avatarWei Yongjun <yjwei@cn.fujitsu.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 7585b97a
...@@ -257,7 +257,6 @@ static inline int bfusb_recv_block(struct bfusb_data *data, int hdr, unsigned ch ...@@ -257,7 +257,6 @@ static inline int bfusb_recv_block(struct bfusb_data *data, int hdr, unsigned ch
if (hdr & 0x10) { if (hdr & 0x10) {
BT_ERR("%s error in block", data->hdev->name); BT_ERR("%s error in block", data->hdev->name);
if (data->reassembly)
kfree_skb(data->reassembly); kfree_skb(data->reassembly);
data->reassembly = NULL; data->reassembly = NULL;
return -EIO; return -EIO;
......
...@@ -102,7 +102,6 @@ static int h4_close(struct hci_uart *hu) ...@@ -102,7 +102,6 @@ static int h4_close(struct hci_uart *hu)
skb_queue_purge(&h4->txq); skb_queue_purge(&h4->txq);
if (h4->rx_skb)
kfree_skb(h4->rx_skb); kfree_skb(h4->rx_skb);
hu->priv = NULL; hu->priv = NULL;
......
...@@ -163,7 +163,6 @@ static int ll_close(struct hci_uart *hu) ...@@ -163,7 +163,6 @@ static int ll_close(struct hci_uart *hu)
skb_queue_purge(&ll->tx_wait_q); skb_queue_purge(&ll->tx_wait_q);
skb_queue_purge(&ll->txq); skb_queue_purge(&ll->txq);
if (ll->rx_skb)
kfree_skb(ll->rx_skb); kfree_skb(ll->rx_skb);
hu->priv = NULL; hu->priv = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment