diff options
author | Balakrishna Godavarthi <bgodavar@codeaurora.org> | 2018-08-22 17:50:04 +0530 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2018-09-27 11:59:58 +0200 |
commit | ca30ccd2191842ebfd36229bee91da2db8c16361 (patch) | |
tree | 57b78192771519c907058346282b192da34659c5 | |
parent | 5aac49378742a52bbe8af3d25bc51b487be7b17f (diff) | |
download | talos-obmc-linux-ca30ccd2191842ebfd36229bee91da2db8c16361.tar.gz talos-obmc-linux-ca30ccd2191842ebfd36229bee91da2db8c16361.zip |
Bluetooth: hci_qca: Remove serdev_device_open/close function calls
Removed serdev_device_open/close functions from qca_open/close as
they are called in hci_uart_register_device() and
hci_uart_unregister_device() functions.
Signed-off-by: Balakrishna Godavarthi <bgodavar@codeaurora.org>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
-rw-r--r-- | drivers/bluetooth/hci_qca.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/bluetooth/hci_qca.c b/drivers/bluetooth/hci_qca.c index e182f6019f68..a740d5703914 100644 --- a/drivers/bluetooth/hci_qca.c +++ b/drivers/bluetooth/hci_qca.c @@ -499,7 +499,6 @@ static int qca_open(struct hci_uart *hu) hu->priv = qca; if (hu->serdev) { - serdev_device_open(hu->serdev); qcadev = serdev_device_get_drvdata(hu->serdev); if (qcadev->btsoc_type != QCA_WCN3990) { @@ -613,7 +612,6 @@ static int qca_close(struct hci_uart *hu) else gpiod_set_value_cansleep(qcadev->bt_en, 0); - serdev_device_close(hu->serdev); } kfree_skb(qca->rx_skb); |