From: Mikel Astiz <mikel.astiz@xxxxxxxxxxxx> Function hci_num_comp_pkts_evt() doesn't need to handle SCO connections unless SCO flow control is explicitly enabled, as described in the Bluetooth Core Specification, Volume 4, Part B, section 7.7.19. Even in the unlikely case that the hardware supports this feature, the kernel does not enable it. Signed-off-by: Mikel Astiz <mikel.astiz.oss@xxxxxxxxx> --- net/bluetooth/hci_event.c | 6 ------ 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index bb6d802..78f0d58 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -2538,12 +2538,6 @@ static inline void hci_num_comp_pkts_evt(struct hci_dev *hdev, struct sk_buff *s } break; - case SCO_LINK: - hdev->sco_cnt += count; - if (hdev->sco_cnt > hdev->sco_pkts) - hdev->sco_cnt = hdev->sco_pkts; - break; - default: BT_ERR("Unknown type %d conn %p", conn->type, conn); break; -- 1.7.7.6 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html