Convert hci_ll to use hci_uart_unregister_device(). This simplifies the _remove() handler as well as fixes a potential race condition on unload. Signed-off-by: Ian Molton <ian@xxxxxxxxxxxxxx> --- drivers/bluetooth/hci_ll.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/bluetooth/hci_ll.c b/drivers/bluetooth/hci_ll.c index c982943f0747..20e90fc1f7be 100644 --- a/drivers/bluetooth/hci_ll.c +++ b/drivers/bluetooth/hci_ll.c @@ -745,10 +745,8 @@ static void hci_ti_remove(struct serdev_device *serdev) struct hci_uart *hu = &lldev->hu; struct hci_dev *hdev = hu->hdev; - cancel_work_sync(&hu->write_work); + hci_uart_unregister_device(hdev); - hci_unregister_dev(hdev); - hci_free_dev(hdev); hu->proto->close(hu); } -- 2.11.0 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html