|
@@ -267,11 +267,14 @@ int ipa3_setup_apps_low_lat_cons_pipe(void)
|
|
|
if (rmnet_ctl_ipa3_ctx->cb_info.ready_cb) {
|
|
|
(*(rmnet_ctl_ipa3_ctx->cb_info.ready_cb))
|
|
|
(rmnet_ctl_ipa3_ctx->cb_info.ready_cb_user_data);
|
|
|
- } else {
|
|
|
- IPAERR("invalid ready_cb\n");
|
|
|
- return -EFAULT;
|
|
|
}
|
|
|
-
|
|
|
+ /*
|
|
|
+ * if no ready_cb yet, which means rmnet_ctl not
|
|
|
+ * register to IPA, we will move state to pipe
|
|
|
+ * ready and will wait for register event
|
|
|
+ * coming and move to start state.
|
|
|
+ * The ready_cb will called from regsiter itself.
|
|
|
+ */
|
|
|
mutex_lock(&rmnet_ctl_ipa3_ctx->lock);
|
|
|
if (rmnet_ctl_ipa3_ctx->state == IPA_RMNET_CTL_NOT_REG)
|
|
|
rmnet_ctl_ipa3_ctx->state = IPA_RMNET_CTL_PIPE_READY;
|
|
@@ -369,17 +372,6 @@ int ipa3_teardown_apps_low_lat_pipes(void)
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
-void ipa3_rmnet_ctl_ready_notifier(void)
|
|
|
-{
|
|
|
- if (rmnet_ctl_ipa3_ctx->cb_info.ready_cb) {
|
|
|
- (*(rmnet_ctl_ipa3_ctx->cb_info.ready_cb))
|
|
|
- (rmnet_ctl_ipa3_ctx->cb_info.ready_cb_user_data);
|
|
|
- } else
|
|
|
- IPAERR("invalid ready_cb\n");
|
|
|
-
|
|
|
- IPADBG("low lat pipes are ready\n");
|
|
|
-}
|
|
|
-
|
|
|
int ipa3_rmnet_ctl_xmit(struct sk_buff *skb)
|
|
|
{
|
|
|
int ret;
|