Bläddra i källkod

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
Ajit Pal Singh 6 år sedan
förälder
incheckning
83301871d5
1 ändrade filer med 6 tillägg och 1 borttagningar
  1. 6 1
      hif/src/usb/hif_usb_internal.h

+ 6 - 1
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)