qcacmn: Clean up hif and htc component prints

Clean up hif and htc component prints by correcting trace levels
for regularly occurring prints and removing newlines from converged
print APIs since qdf_trace_msg appends them by default.

Change-Id: I45b1bbe7b16ab7fb8e229b59a094c7382561d658
CRs-Fixed: 2243843
This commit is contained in:
Aditya Sathish
2018-07-02 16:41:39 +05:30
committad av nshrivas
förälder ded018e406
incheckning 648ce114ab
10 ändrade filer med 51 tillägg och 51 borttagningar

Visa fil

@@ -341,7 +341,7 @@ QDF_STATUS htc_connect_service(HTC_HANDLE HTCHandle,
if (maxMsgSize % target->TargetCreditSize)
pEndpoint->TxCreditsPerMaxMsg++;
#if DEBUG_CREDIT
qdf_print(" Endpoint%d initial credit:%d, size:%d.\n",
qdf_print(" Endpoint%d initial credit:%d, size:%d.",
pEndpoint->Id, pEndpoint->TxCredits,
pEndpoint->TxCreditSize);
#endif
@@ -424,7 +424,7 @@ void htc_set_async_ep(HTC_HANDLE HTCHandle,
HTC_ENDPOINT *pEndpoint = &target->endpoint[htc_ep_id];
pEndpoint->async_update = value;
qdf_print("%s: htc_handle %pK, ep %d, value %d\n", __func__,
HTCHandle, htc_ep_id, value);
qdf_print("%s: htc_handle %pK, ep %d, value %d", __func__,
HTCHandle, htc_ep_id, value);
}