diff options
author | Ben Young Tae Kim <ytkim@qca.qualcomm.com> | 2015-08-10 14:24:17 -0700 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-08-10 23:52:20 +0200 |
commit | 0ff252c1976da5d80db1377eb39b551931e61826 (patch) | |
tree | b2d83c1c6009871e7a2ce403c634f543505bd6c8 /drivers/bluetooth/hci_ldisc.c | |
parent | 83e81961ff7ef75f97756f316caea5aa6bcc19cc (diff) | |
download | linux-0ff252c1976da5d80db1377eb39b551931e61826.tar.bz2 |
Bluetooth: hciuart: Add support QCA chipset for UART
QCA61x4 chips have supported sleep feature using In-Band-Sleep commands
to enable sleep feature based on H4 protocol. After sending
patch/nvm configuration is done, IBS mode will be up and running
Signed-off-by: Ben Young Tae Kim <ytkim@qca.qualcomm.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth/hci_ldisc.c')
-rw-r--r-- | drivers/bluetooth/hci_ldisc.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/bluetooth/hci_ldisc.c b/drivers/bluetooth/hci_ldisc.c index 20c2ac193ff9..0d5a05a7c1fd 100644 --- a/drivers/bluetooth/hci_ldisc.c +++ b/drivers/bluetooth/hci_ldisc.c @@ -810,6 +810,9 @@ static int __init hci_uart_init(void) #ifdef CONFIG_BT_HCIUART_BCM bcm_init(); #endif +#ifdef CONFIG_BT_HCIUART_QCA + qca_init(); +#endif return 0; } @@ -839,6 +842,9 @@ static void __exit hci_uart_exit(void) #ifdef CONFIG_BT_HCIUART_BCM bcm_deinit(); #endif +#ifdef CONFIG_BT_HCIUART_QCA + qca_deinit(); +#endif /* Release tty registration of line discipline */ err = tty_unregister_ldisc(N_HCI); |