From 83301871d502839902fa3872d382f7324f67fcbd Mon Sep 17 00:00:00 2001 From: Ajit Pal Singh Date: Thu, 21 Mar 2019 14:15:12 +0530 Subject: [PATCH] qcacmn: qcn7605: Increase TX URB count to 64 Increase TX URB count to 64 for QCN7605. It is seen that sometimes the URB count reaches to zero on HTT endpoint. Change-Id: If6ccf9b11a6fd13d327b47b6bef8db2b10a1d0f9 CRs-Fixed: 2412376 --- hif/src/usb/hif_usb_internal.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/hif/src/usb/hif_usb_internal.h b/hif/src/usb/hif_usb_internal.h index bfccc528f4..ddf8cc2254 100644 --- a/hif/src/usb/hif_usb_internal.h +++ b/hif/src/usb/hif_usb_internal.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2017 The Linux Foundation. All rights reserved. + * Copyright (c) 2013-2017, 2019 The Linux Foundation. All rights reserved. * * Permission to use, copy, modify, and/or distribute this software for * any purpose with or without fee is hereby granted, provided that the @@ -29,7 +29,12 @@ #include "hif.h" #include "if_usb.h" +#ifdef QCN7605_SUPPORT +#define TX_URB_COUNT 64 +#else #define TX_URB_COUNT 32 +#endif + #define RX_URB_COUNT 32 #define HIF_USB_RX_BUFFER_SIZE (1792 + 8)