Re: [PATCH 05/10] Bluetooth: hci_serdev: do not open device in hci open

2017-03-17 Thread Pavel Machek
> @@ -366,5 +360,6 @@ int hci_uart_register_device(struct hci_uart *hu, const > struct hci_uart_proto *p > err_alloc: > clear_bit(HCI_UART_PROTO_READY, &hu->flags); > p->close(hu); > + > return err; > } This could be removed, I guess. Acked-by: Pavel Machek

[PATCH 05/10] Bluetooth: hci_serdev: do not open device in hci open

2017-03-04 Thread Sebastian Reichel
The device driver may need to communicate with the UART device while the Bluetooth device is closed (e.g. due to interrupts). Signed-off-by: Sebastian Reichel --- drivers/bluetooth/hci_serdev.c | 13 - 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/drivers/bluetooth/hc