diff options
-rw-r--r-- | ipc.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -130,14 +130,6 @@ int ipc_fmt_create(struct ril_client *client) goto error_bootstrap; } - LOGD("Client open..."); - - rc = ipc_client_open(ipc_client); - if (rc < 0) { - LOGE("%s: failed to open ipc client", __func__); - goto error_open; - } - LOGD("Client power on..."); rc = ipc_client_power_on(ipc_client); @@ -146,6 +138,14 @@ int ipc_fmt_create(struct ril_client *client) goto error_power_on; } + LOGD("Client open..."); + + rc = ipc_client_open(ipc_client); + if (rc < 0) { + LOGE("%s: failed to open ipc client", __func__); + goto error_open; + } + LOGD("IPC FMT client done"); return 0; |