Set line discipline to HCI_UART_H4 even for low power mode.
HCI_UART_LL is almost similar to H4 line and wouldn't cause
any problems since the extra packets were not being used any
way. But to avoid confusion, its being changed.
Based on a report by: goodsc.lee@samsung.com
Change-Id: Ifcb8bd5d8d619b74225057a6f7b5eee2c94a9925
diff --git a/brcm_patchram_plus/brcm_patchram_plus.c b/brcm_patchram_plus/brcm_patchram_plus.c
index de748e3..c91a13f 100644
--- a/brcm_patchram_plus/brcm_patchram_plus.c
+++ b/brcm_patchram_plus/brcm_patchram_plus.c
@@ -489,9 +489,6 @@
{
int i = N_HCI;
int proto = HCI_UART_H4;
- if (enable_lpm) {
- proto = HCI_UART_LL;
- }
if (ioctl(uart_fd, TIOCSETD, &i) < 0) {
fprintf(stderr, "Can't set line discipline\n");
return;