瀏覽代碼

Bluetooth: hci_serdev: Fixed error space required before open paranethesis

Fixed error in space required before paranthesis
in drivers/bluetooth/hci_serdev.c

Signed-off-by: Jagdish Tirumala <t.jag587@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Jagdish Tirumala 7 年之前
父節點
當前提交
ea9ed991c3
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/bluetooth/hci_serdev.c

+ 1 - 1
drivers/bluetooth/hci_serdev.c

@@ -95,7 +95,7 @@ static void hci_uart_write_work(struct work_struct *work)
 			hci_uart_tx_complete(hu, hci_skb_pkt_type(skb));
 			kfree_skb(skb);
 		}
-	} while(test_bit(HCI_UART_TX_WAKEUP, &hu->tx_state));
+	} while (test_bit(HCI_UART_TX_WAKEUP, &hu->tx_state));
 
 	clear_bit(HCI_UART_SENDING, &hu->tx_state);
 }