diff options
author | Ian Molton <ian@mnementh.co.uk> | 2017-07-08 19:37:41 +0300 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2017-07-20 12:18:36 +0300 |
commit | c34dc3bfa7642fda423208579015d615f7becfa0 (patch) | |
tree | 9e5dd5bfe190ba5eb4cc5f6c1e1d980a026f45af /drivers/bluetooth/hci_uart.h | |
parent | fd865802c66bc451dc515ed89360f84376ce1a56 (diff) | |
download | linux-c34dc3bfa7642fda423208579015d615f7becfa0.tar.xz |
Bluetooth: hci_serdev: Introduce hci_uart_unregister_device()
Several drivers have the same (and incorrect) code in their
_remove() handler.
Coalesce this into a shared function.
Signed-off-by: Ian Molton <ian@mnementh.co.uk>
Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth/hci_uart.h')
-rw-r--r-- | drivers/bluetooth/hci_uart.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/bluetooth/hci_uart.h b/drivers/bluetooth/hci_uart.h index c6e9e1cf63f8..d9cd95d81149 100644 --- a/drivers/bluetooth/hci_uart.h +++ b/drivers/bluetooth/hci_uart.h @@ -112,6 +112,7 @@ struct hci_uart { int hci_uart_register_proto(const struct hci_uart_proto *p); int hci_uart_unregister_proto(const struct hci_uart_proto *p); int hci_uart_register_device(struct hci_uart *hu, const struct hci_uart_proto *p); +void hci_uart_unregister_device(struct hci_uart *hu); int hci_uart_tx_wakeup(struct hci_uart *hu); int hci_uart_init_ready(struct hci_uart *hu); |