Browse Source

Merge "qcacmn: Fix for HT_C tx lock issue" into wlan-cmn.driver.lnx.2.0-dev

Service qcabuildsw 8 years ago
parent
commit
bf565d6368
1 changed files with 4 additions and 1 deletions
  1. 4 1
      htc/htc_send.c

+ 4 - 1
htc/htc_send.c

@@ -1221,7 +1221,10 @@ static HTC_SEND_QUEUE_RESULT htc_try_send(HTC_TARGET *target,
 
 			HTC_PACKET_QUEUE_TRANSFER_TO_HEAD(&pEndpoint->TxQueue,
 							  &sendQueue);
-			LOCK_HTC_TX(target);
+
+			if (pEndpoint->service_id != WMI_CONTROL_SVC) {
+				LOCK_HTC_TX(target);
+			}
 			break;
 		}