Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7f8f2729 authored by Karl Beldan's avatar Karl Beldan Committed by Gustavo Padovan
Browse files

Bluetooth: hci_uart: Fix typo in stats for sco tx



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

Signed-off-by: default avatarKarl Beldan <karl.beldan@gmail.com>
Acked-by: default avatarMarcel Holtmann <marcel@holtmann.org>
Signed-off-by: default avatarGustavo F. Padovan <padovan@profusion.mobi>
parent 534c92fd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}
}