Lines Matching defs:report
151 const struct ath11k_htc_credit_report *report,
159 if (len % sizeof(*report))
160 ath11k_warn(ab, "Uneven credit report len %d", len);
162 n_reports = len / sizeof(*report);
165 for (i = 0; i < n_reports; i++, report++) {
166 if (report->eid >= ATH11K_HTC_EP_COUNT)
169 ep = &htc->endpoint[report->eid];
170 ep->tx_credits += report->credits;
173 report->eid, report->credits, ep->tx_credits);
215 ath11k_warn(ab, "Credit report too long\n");