Browse Source

qcacmn: Fix for HT_C tx lock issue

Added missed condition while locking HT_C tx lock when
htc_issue_packets returns error

Change-Id: I29ce11f20d68297bd946e0925a2e59a576744e73
CRs-Fixed: 1084979
Venkateswara Swamy Bandaru 8 years ago
parent
commit
b3c810b062
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;
 		}