qcacld-3.0: Move IPA WLAN event handler to IPA component

IPA module has been moved to CLD component under the converged
driver model. Move the legacy HDD IPA WLAN event handler to
the IPA component.

Change-Id: Ia53adce7ef29eea747f288fa074f96a84e47925d
CRs-Fixed: 2177925
This commit is contained in:
Sravan Kumar Kairam
2018-03-13 09:52:31 +05:30
committato da nshrivas
parent f4303dcb22
commit bd4c5eba7b
10 ha cambiato i file con 1043 aggiunte e 12 eliminazioni

Vedi File

@@ -34,7 +34,7 @@
*
* Return: None
*/
void target_if_ipa_register_tx_ops(ipa_uc_offload_control_req ipa_tx_op);
void target_if_ipa_register_tx_ops(ipa_uc_offload_control_req *ipa_tx_op);
#endif /* IPA_OFFLOAD */
#endif /* _TARGET_IF_IPA_H_ */

Vedi File

@@ -44,12 +44,7 @@ target_if_ipa_uc_offload_control_req(struct wlan_objmgr_psoc *psoc,
req);
}
void target_if_ipa_register_tx_ops(ipa_uc_offload_control_req ipa_tx_op)
void target_if_ipa_register_tx_ops(ipa_uc_offload_control_req *ipa_tx_op)
{
if (!ipa_tx_op) {
target_if_err("ipa_tx_op is null");
return;
}
ipa_tx_op = target_if_ipa_uc_offload_control_req;
*ipa_tx_op = target_if_ipa_uc_offload_control_req;
}