aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth/hci_vhci.c
diff options
context:
space:
mode:
authorGustavo F. Padovan <padovan@profusion.mobi>2010-05-01 15:15:34 -0400
committerMarcel Holtmann <marcel@holtmann.org>2010-05-10 03:28:45 -0400
commit4f7ac1814ef6f0773e57ffd159a1dd57a3c80521 (patch)
tree43ff54449bf1f8f95e255af6b471c80a2e650dc5 /drivers/bluetooth/hci_vhci.c
parentacce90d6a957812081b83ac4d1133e93a43569c6 (diff)
Bluetooth: Fix wrong packet type count increment
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth/hci_vhci.c')
-rw-r--r--drivers/bluetooth/hci_vhci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bluetooth/hci_vhci.c b/drivers/bluetooth/hci_vhci.c
index bb0aefdb4267..3aa7b2a54b6f 100644
--- a/drivers/bluetooth/hci_vhci.c
+++ b/drivers/bluetooth/hci_vhci.c
@@ -157,7 +157,7 @@ static inline ssize_t vhci_put_user(struct vhci_data *data,
157 break; 157 break;
158 158
159 case HCI_SCODATA_PKT: 159 case HCI_SCODATA_PKT:
160 data->hdev->stat.cmd_tx++; 160 data->hdev->stat.sco_tx++;
161 break; 161 break;
162 }; 162 };
163 163