| Index: drivers/bluetooth/hci_ldisc.c
|
| diff --git a/drivers/bluetooth/hci_ldisc.c b/drivers/bluetooth/hci_ldisc.c
|
| index 4895f0e053229bc8c04b568912340ffdbc02a076..71b3830086c1e7b298f7b4340c05b3e71b1c45e6 100644
|
| --- a/drivers/bluetooth/hci_ldisc.c
|
| +++ b/drivers/bluetooth/hci_ldisc.c
|
| @@ -542,6 +542,9 @@ static int __init hci_uart_init(void)
|
| #ifdef CONFIG_BT_HCIUART_LL
|
| ll_init();
|
| #endif
|
| +#ifdef CONFIG_BT_HCIUART_ATH
|
| + ath_init();
|
| +#endif
|
|
|
| return 0;
|
| }
|
| @@ -559,6 +562,9 @@ static void __exit hci_uart_exit(void)
|
| #ifdef CONFIG_BT_HCIUART_LL
|
| ll_deinit();
|
| #endif
|
| +#ifdef CONFIG_BT_HCIUART_ATH
|
| + ath_deinit();
|
| +#endif
|
|
|
| /* Release tty registration of line discipline */
|
| if ((err = tty_unregister_ldisc(N_HCI)))
|
|
|