projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
534c92f
)
Bluetooth: hci_uart: Fix typo in stats for sco tx
author
Karl Beldan
<karl.beldan@gmail.com>
Thu, 7 Oct 2010 19:57:10 +0000
(21:57 +0200)
committer
Gustavo F. Padovan
<padovan@profusion.mobi>
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 <karl.beldan@gmail.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
drivers/bluetooth/hci_ldisc.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/bluetooth/hci_ldisc.c
b/drivers/bluetooth/hci_ldisc.c
index 998833d93c13c724ffbc828ab0f62ad07e1c438c..74cb6f3e86c571c40fa9127d734183e97f0ab65d 100644
(file)
--- a/
drivers/bluetooth/hci_ldisc.c
+++ b/
drivers/bluetooth/hci_ldisc.c
@@
-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;
}
}