Home
last modified time | relevance | path

Searched refs:MaxMsgPerBundle (Results 1 – 5 of 5) sorted by relevance

/linux-2.6.39/drivers/staging/ath6kl/htc2/
Dhtc.c286 target->MaxMsgPerBundle = pRdyMsg->MaxMsgsPerHTCBundle; in HTCWaitTarget()
290 target->MaxMsgPerBundle = 0; in HTCWaitTarget()
296 target->MaxMsgPerBundle = 0; in HTCWaitTarget()
304 if (target->MaxMsgPerBundle > 0) { in HTCWaitTarget()
306 … target->MaxMsgPerBundle = min(HTC_HOST_MAX_MSG_PER_BUNDLE, target->MaxMsgPerBundle); in HTCWaitTarget()
308 if (DevSetupMsgBundling(&target->Device,target->MaxMsgPerBundle)) { in HTCWaitTarget()
310 target->MaxMsgPerBundle = 0; in HTCWaitTarget()
313 target->MaxMsgPerBundle = min(DEV_GET_MAX_MSG_PER_BUNDLE(&target->Device), in HTCWaitTarget()
314 target->MaxMsgPerBundle); in HTCWaitTarget()
318 if (target->MaxMsgPerBundle > 0) { in HTCWaitTarget()
[all …]
Dhtc_services.c81 if (target->MaxMsgPerBundle > 0) { in HTCSendSetupComplete()
84 pSetupCompleteEx->MaxMsgsPerBundledRecv = target->MaxMsgPerBundle; in HTCSendSetupComplete()
Dhtc_internal.h137 int MaxMsgPerBundle; /* max messages per bundle for HTC */ member
Dhtc_recv.c748 A_ASSERT(numMessages <= target->MaxMsgPerBundle); in AllocAndPrepareRxPackets()
1002 pktsToScatter = min(pktsToScatter, target->MaxMsgPerBundle); in HTCIssueRecvPacketBundle()
Dhtc_send.c335 pktsToScatter = min(pktsToScatter, target->MaxMsgPerBundle); in HTCIssueSendBundle()