qcacmn: Genoa: SDIO: Tx - Do not use HTC_FLAGS_SEND_BUNDLE

Genoa SDIO FW doesn't use the HTC_FLAGS_SEND_BUNDLE
in send direction, host to fw

Do not set this flag during Tx bundling for HTC Packets
This is a WAR to avoid FW crash, until fix available from FW

Crs-Fixed: 2511297
Change-Id: Iaf178f9e1a9c07ca25a8b801c667fb0d16fac85c
This commit is contained in:
Visweswara Tanuku
2019-08-19 16:35:11 +05:30
committed by nshrivas
orang tua 7d7cb84e5e
melakukan 68f186311d

Melihat File

@@ -490,7 +490,15 @@ static void htc_issue_packets_bundle(HTC_TARGET *target,
SM(pPacket->ActualLength,
HTC_FRAME_HDR_PAYLOADLEN) |
SM(pPacket->PktInfo.AsTx.SendFlags |
#ifdef QCA_TX_PADDING_CREDIT_SUPPORT
/*
* This is a WAR to avoid FW Crash,
* to be removed once fixed in FW
*/
0,
#else
HTC_FLAGS_SEND_BUNDLE,
#endif
HTC_FRAME_HDR_FLAGS) |
SM(pPacket->Endpoint,
HTC_FRAME_HDR_ENDPOINTID));