diff options
author | Ian Molton <ian@mnementh.co.uk> | 2017-07-08 19:37:42 +0300 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2017-07-20 12:18:36 +0300 |
commit | 05f2a0bcecefdac5f2d27dff3164dcebff4d9618 (patch) | |
tree | b76e79021325cb48b4198b23f91a3dd97b4a2e66 /drivers/bluetooth/hci_nokia.c | |
parent | c34dc3bfa7642fda423208579015d615f7becfa0 (diff) | |
download | linux-05f2a0bcecefdac5f2d27dff3164dcebff4d9618.tar.xz |
Bluetooth: hci_nokia: Use new hci_uart_unregister_device() function
Simplify _remove() path for hci_nokia.c
Signed-off-by: Ian Molton <ian@mnementh.co.uk>
Reviewed-by: Sebastian Reichel <sebastian.reichel@collabor.co.uk>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth/hci_nokia.c')
-rw-r--r-- | drivers/bluetooth/hci_nokia.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/drivers/bluetooth/hci_nokia.c b/drivers/bluetooth/hci_nokia.c index 6dbb1f6ff6bd..3539fd03f47e 100644 --- a/drivers/bluetooth/hci_nokia.c +++ b/drivers/bluetooth/hci_nokia.c @@ -767,16 +767,8 @@ static int nokia_bluetooth_serdev_probe(struct serdev_device *serdev) static void nokia_bluetooth_serdev_remove(struct serdev_device *serdev) { struct nokia_bt_dev *btdev = serdev_device_get_drvdata(serdev); - struct hci_uart *hu = &btdev->hu; - struct hci_dev *hdev = hu->hdev; - - hci_unregister_dev(hdev); - hci_free_dev(hdev); - - cancel_work_sync(&hu->write_work); - - hu->proto->close(hu); + hci_uart_unregister_device(&btdev->hu); } static int nokia_bluetooth_runtime_suspend(struct device *dev) |