Added missed condition while locking HT_C tx lock when htc_issue_packets returns error Change-Id: I29ce11f20d68297bd946e0925a2e59a576744e73 CRs-Fixed: 1084979
@@ -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;
}