]> Git Repo - linux.git/commitdiff
Bluetooth: hci_uart: Fix typo in stats for sco tx
authorKarl Beldan <[email protected]>
Thu, 7 Oct 2010 19:57:10 +0000 (21:57 +0200)
committerGustavo F. Padovan <[email protected]>
Tue, 12 Oct 2010 15:44:53 +0000 (12:44 -0300)
s/stat.cmd_tx++/stat.sco_tx++ for HCI_SCODATA_PKT

Signed-off-by: Karl Beldan <[email protected]>
Acked-by: Marcel Holtmann <[email protected]>
Signed-off-by: Gustavo F. Padovan <[email protected]>
drivers/bluetooth/hci_ldisc.c

index 998833d93c13c724ffbc828ab0f62ad07e1c438c..74cb6f3e86c571c40fa9127d734183e97f0ab65d 100644 (file)
@@ -101,7 +101,7 @@ static inline void hci_uart_tx_complete(struct hci_uart *hu, int pkt_type)
                break;
 
        case HCI_SCODATA_PKT:
-               hdev->stat.cmd_tx++;
+               hdev->stat.sco_tx++;
                break;
        }
 }
This page took 0.056138 seconds and 4 git commands to generate.