2009-07-28 16:40:50

by Karl Beldan

[permalink] [raw]
Subject: [PATCH] Bluetooth: Fix typo in stats for hci_uart

From 2b789aa983d5e27011c5fd2ae444b495ad9a9b81 Mon Sep 17 00:00:00 2001
From: Karl Beldan <[email protected]>
Date: Tue, 28 Jul 2009 18:03:12 +0200
Subject: [PATCH] Bluetooth: Fix typo in stats for hci_uart

s/stat.cmd_tx++/stat.sco_tx++ for HCI_SCODATA_PKT

Signed-off-by: Karl Beldan <[email protected]>
---
drivers/bluetooth/hci_ldisc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/bluetooth/hci_ldisc.c b/drivers/bluetooth/hci_ldisc.c
index 4895f0e..a08b207 100644
--- 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;
}
}
--
1.6.3.2.306.g4f4fa


Attachments:
0001-Bluetooth-Fix-typo-in-stats-for-hci_uart.patch (814.00 B)

2009-08-05 10:20:27

by Karl Beldan

[permalink] [raw]
Subject: Re: [PATCH] Bluetooth: Fix typo in stats for hci_uart

Hi Marcel,

Are you considering applying this trivial one ?


Karl Beldan wrote:
> s/stat.cmd_tx++/stat.sco_tx++ for HCI_SCODATA_PKT
>
> Signed-off-by: Karl Beldan <[email protected]>
> ---
> drivers/bluetooth/hci_ldisc.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/bluetooth/hci_ldisc.c b/drivers/bluetooth/hci_ldisc.c
> index 4895f0e..a08b207 100644
> --- 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;
> }
> }
>