diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2020-02-28 06:01:13 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2020-02-28 08:43:57 +0100 |
commit | 4f28e3f9174a4a1860810d484ca9bcff761426b8 (patch) | |
tree | 8cc983ae1dad1b9f8d0c780e0ed858ad3cfd9db5 /drivers | |
parent | 6bd023c48f61fea7dd6f3c78c8954ebad2ecebc1 (diff) | |
download | linux-4f28e3f9174a4a1860810d484ca9bcff761426b8.tar.bz2 |
Bluetooth: hci_h4: Remove a redundant assignment in 'h4_flush()'
'hu->priv' is set twice to NULL in this function.
Axe one of these assignments.
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/bluetooth/hci_h4.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/bluetooth/hci_h4.c b/drivers/bluetooth/hci_h4.c index 94baa56b9f50..4b3b14a34794 100644 --- a/drivers/bluetooth/hci_h4.c +++ b/drivers/bluetooth/hci_h4.c @@ -71,8 +71,6 @@ static int h4_close(struct hci_uart *hu) { struct h4_struct *h4 = hu->priv; - hu->priv = NULL; - BT_DBG("hu %p", hu); skb_queue_purge(&h4->txq); |