Lines Matching defs:report
145 const struct ath11k_htc_credit_report *report,
153 if (len % sizeof(*report))
154 ath11k_warn(ab, "Uneven credit report len %d", len);
156 n_reports = len / sizeof(*report);
159 for (i = 0; i < n_reports; i++, report++) {
160 if (report->eid >= ATH11K_HTC_EP_COUNT)
163 ep = &htc->endpoint[report->eid];
164 ep->tx_credits += report->credits;
167 report->eid, report->credits, ep->tx_credits);
208 ath11k_warn(ab, "Credit report too long\n");