Lines Matching refs:rpt
4978 "C2H bcnfltr rpt macid: %d, type: %d, ma: %d, event: %d\n",
5133 rtw89_debug(rtwdev, RTW89_DBG_RFK_TRACK, "C2H TX duty rpt with err=%d\n", err);
5216 struct rtw89_mac_mcc_tsf_rpt *rpt;
5219 rpt = (struct rtw89_mac_mcc_tsf_rpt *)data.buf;
5220 rpt->macid_x = RTW89_GET_MAC_C2H_MCC_TSF_RPT_MACID_X(c2h->data);
5221 rpt->macid_y = RTW89_GET_MAC_C2H_MCC_TSF_RPT_MACID_Y(c2h->data);
5222 rpt->tsf_x_low = RTW89_GET_MAC_C2H_MCC_TSF_RPT_TSF_LOW_X(c2h->data);
5223 rpt->tsf_x_high = RTW89_GET_MAC_C2H_MCC_TSF_RPT_TSF_HIGH_X(c2h->data);
5224 rpt->tsf_y_low = RTW89_GET_MAC_C2H_MCC_TSF_RPT_TSF_LOW_Y(c2h->data);
5225 rpt->tsf_y_high = RTW89_GET_MAC_C2H_MCC_TSF_RPT_TSF_HIGH_Y(c2h->data);
5230 rpt->macid_x, (u64)rpt->tsf_x_high << 32 | rpt->tsf_x_low,
5231 rpt->macid_y, (u64)rpt->tsf_y_high << 32 | rpt->tsf_y_low);
5234 rpt->macid_x, (uintmax_t)rpt->tsf_x_high << 32 | rpt->tsf_x_low,
5235 rpt->macid_y, (uintmax_t)rpt->tsf_y_high << 32 | rpt->tsf_y_low);
5323 struct rtw89_mac_mrc_tsf_rpt *rpt;
5327 rpt = (struct rtw89_mac_mrc_tsf_rpt *)data.buf;
5328 rpt->num = min_t(u8, RTW89_MAC_MRC_MAX_REQ_TSF_NUM,
5332 for (i = 0; i < rpt->num; i++) {
5336 rpt->tsfs[i] = (u64)tsf_high << 32 | tsf_low;
5341 i, rpt->tsfs[i]);
5344 i, (uintmax_t)rpt->tsfs[i]);