Lines Matching defs:rxd

2160 	bool (*rx_desc_get_msdu_limit_error)(struct htt_rx_desc *rxd);
2161 int (*rx_desc_get_l3_pad_bytes)(struct htt_rx_desc *rxd);
2169 struct rx_attention *(*rx_desc_get_attention)(struct htt_rx_desc *rxd);
2170 struct rx_frag_info_common *(*rx_desc_get_frag_info)(struct htt_rx_desc *rxd);
2171 struct rx_mpdu_start *(*rx_desc_get_mpdu_start)(struct htt_rx_desc *rxd);
2172 struct rx_mpdu_end *(*rx_desc_get_mpdu_end)(struct htt_rx_desc *rxd);
2173 struct rx_msdu_start_common *(*rx_desc_get_msdu_start)(struct htt_rx_desc *rxd);
2174 struct rx_msdu_end_common *(*rx_desc_get_msdu_end)(struct htt_rx_desc *rxd);
2175 struct rx_ppdu_start *(*rx_desc_get_ppdu_start)(struct htt_rx_desc *rxd);
2176 struct rx_ppdu_end_common *(*rx_desc_get_ppdu_end)(struct htt_rx_desc *rxd);
2177 u8 *(*rx_desc_get_rx_hdr_status)(struct htt_rx_desc *rxd);
2178 u8 *(*rx_desc_get_msdu_payload)(struct htt_rx_desc *rxd);
2186 ath10k_htt_rx_desc_get_l3_pad_bytes(struct ath10k_hw_params *hw, struct htt_rx_desc *rxd)
2189 return hw->rx_desc_ops->rx_desc_get_l3_pad_bytes(rxd);
2194 ath10k_htt_rx_desc_msdu_limit_error(struct ath10k_hw_params *hw, struct htt_rx_desc *rxd)
2197 return hw->rx_desc_ops->rx_desc_get_msdu_limit_error(rxd);
2238 ath10k_htt_rx_desc_get_attention(struct ath10k_hw_params *hw, struct htt_rx_desc *rxd)
2243 return hw->rx_desc_ops->rx_desc_get_attention(rxd);
2245 rx_desc = container_of(rxd, struct htt_rx_desc_v1, base);
2250 ath10k_htt_rx_desc_get_frag_info(struct ath10k_hw_params *hw, struct htt_rx_desc *rxd)
2255 return hw->rx_desc_ops->rx_desc_get_frag_info(rxd);
2257 rx_desc = container_of(rxd, struct htt_rx_desc_v1, base);
2262 ath10k_htt_rx_desc_get_mpdu_start(struct ath10k_hw_params *hw, struct htt_rx_desc *rxd)
2267 return hw->rx_desc_ops->rx_desc_get_mpdu_start(rxd);
2269 rx_desc = container_of(rxd, struct htt_rx_desc_v1, base);
2274 ath10k_htt_rx_desc_get_mpdu_end(struct ath10k_hw_params *hw, struct htt_rx_desc *rxd)
2279 return hw->rx_desc_ops->rx_desc_get_mpdu_end(rxd);
2281 rx_desc = container_of(rxd, struct htt_rx_desc_v1, base);
2286 ath10k_htt_rx_desc_get_msdu_start(struct ath10k_hw_params *hw, struct htt_rx_desc *rxd)
2291 return hw->rx_desc_ops->rx_desc_get_msdu_start(rxd);
2293 rx_desc = container_of(rxd, struct htt_rx_desc_v1, base);
2298 ath10k_htt_rx_desc_get_msdu_end(struct ath10k_hw_params *hw, struct htt_rx_desc *rxd)
2303 return hw->rx_desc_ops->rx_desc_get_msdu_end(rxd);
2305 rx_desc = container_of(rxd, struct htt_rx_desc_v1, base);
2310 ath10k_htt_rx_desc_get_ppdu_start(struct ath10k_hw_params *hw, struct htt_rx_desc *rxd)
2315 return hw->rx_desc_ops->rx_desc_get_ppdu_start(rxd);
2317 rx_desc = container_of(rxd, struct htt_rx_desc_v1, base);
2322 ath10k_htt_rx_desc_get_ppdu_end(struct ath10k_hw_params *hw, struct htt_rx_desc *rxd)
2327 return hw->rx_desc_ops->rx_desc_get_ppdu_end(rxd);
2329 rx_desc = container_of(rxd, struct htt_rx_desc_v1, base);
2334 ath10k_htt_rx_desc_get_rx_hdr_status(struct ath10k_hw_params *hw, struct htt_rx_desc *rxd)
2339 return hw->rx_desc_ops->rx_desc_get_rx_hdr_status(rxd);
2341 rx_desc = container_of(rxd, struct htt_rx_desc_v1, base);
2346 ath10k_htt_rx_desc_get_msdu_payload(struct ath10k_hw_params *hw, struct htt_rx_desc *rxd)
2351 return hw->rx_desc_ops->rx_desc_get_msdu_payload(rxd);
2353 rx_desc = container_of(rxd, struct htt_rx_desc_v1, base);