qcacld-3.0: IPA offload enable compilation issue fix

Currently there is compilation issue in case of IPA
offload enable case due to code changes done as
part of DP componentization.
Fix compilation issue by adding calls to DP component APIs

Change-Id: Id545f67bff75682ceccba5725f956a89c6b9b9f8
CRs-Fixed: 3259293
This commit is contained in:
Amit Mehta
2022-08-02 19:16:22 +05:30
committed by Madan Koyyalamudi
부모 b536b7e2df
커밋 5bda120bfa
3개의 변경된 파일52개의 추가작업 그리고 2개의 파일을 삭제

파일 보기

@@ -1198,4 +1198,28 @@ uint32_t ucfg_dp_fw_data_stall_evt_enabled(void);
*/
uint32_t ucfg_dp_get_bus_bw_high_threshold(struct wlan_objmgr_psoc *psoc);
/**
* ucfg_dp_event_eapol_log() - send event to wlan diag
* @nbuf: Network buffer ptr
* @dir: direction
* @eapol_key_info: eapol key info
*
* Return: None
*/
void ucfg_dp_event_eapol_log(qdf_nbuf_t nbuf, enum qdf_proto_dir dir);
/**
* ucfg_dp_softap_inspect_dhcp_packet() - Inspect DHCP packet
* @vdev: Vdev handle
* @nbuf: pointer to network buffer
* @dir: direction
*
* Inspect the Tx/Rx frame, and send DHCP START/STOP notification to the FW
* through WMI message, during DHCP based IP address acquisition phase.
*
* Return: error number
*/
QDF_STATUS
ucfg_dp_softap_inspect_dhcp_packet(struct wlan_objmgr_vdev *vdev,
qdf_nbuf_t nbuf, enum qdf_proto_dir dir);
#endif /* _WLAN_DP_UCFG_API_H_ */