Commit 72b9439b authored by Marcel Holtmann's avatar Marcel Holtmann

Bluetooth: hci_uart: Remove unused h4->rx_skb field

The h4->rx_skb is not used anymore and with that just remove it. Seems
this was a leftover and even the kfree_skb call freeing it is rather
pointless since it got never allocated.
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
parent facf5225
...@@ -51,7 +51,6 @@ ...@@ -51,7 +51,6 @@
struct h4_struct { struct h4_struct {
unsigned long rx_state; unsigned long rx_state;
unsigned long rx_count; unsigned long rx_count;
struct sk_buff *rx_skb;
struct sk_buff_head txq; struct sk_buff_head txq;
}; };
...@@ -95,8 +94,6 @@ static int h4_close(struct hci_uart *hu) ...@@ -95,8 +94,6 @@ static int h4_close(struct hci_uart *hu)
skb_queue_purge(&h4->txq); skb_queue_purge(&h4->txq);
kfree_skb(h4->rx_skb);
hu->priv = NULL; hu->priv = NULL;
kfree(h4); kfree(h4);
......
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