diff options
Diffstat (limited to 'samsung-ipc/device/xmm6260/modemctl_common.c')
-rw-r--r-- | samsung-ipc/device/xmm6260/modemctl_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samsung-ipc/device/xmm6260/modemctl_common.c b/samsung-ipc/device/xmm6260/modemctl_common.c index 8c37bce..489f9fe 100644 --- a/samsung-ipc/device/xmm6260/modemctl_common.c +++ b/samsung-ipc/device/xmm6260/modemctl_common.c @@ -35,7 +35,7 @@ int modemctl_link_set_active(struct ipc_client *client, ret = ioctl(io_data->link_fd, ioctl_code, &status); if (ret < 0) { - _d("failed to set link active to %d", enabled); + ipc_client_log(client, "failed to set link active to %d", enabled); goto fail; } @@ -54,7 +54,7 @@ int modemctl_link_set_enabled(struct ipc_client *client, ret = ioctl(io_data->link_fd, ioctl_code, &status); if (ret < 0) { - _d("failed to set link state to %d", enabled); + ipc_client_log(client, "failed to set link state to %d", enabled); goto fail; } |