msm: ipa: Remove redundant error logs and warning logs

Removing Error logs and Warning logs from rndis and PM module.

Change-Id: Ie993b1d1fe0936eb75bb90c54bf62fd5a848fc5f
SIgned-off-by: Michael Adisumarta <madisuma@codeaurora.org>
This commit is contained in:
Michael Adisumarta
2021-07-01 19:05:49 -07:00
parent 80b50ead8c
commit e83b209ad3
2 changed files with 0 additions and 7 deletions

View File

@@ -2436,7 +2436,6 @@ static void rndis_ipa_debugfs_init(struct rndis_ipa_dev *rndis_ipa_ctx)
debugfs_create_u8
("aggr_type", flags_read_write,
aggr_directory, (u8 *)&ipa_to_usb_ep_cfg.aggr.aggr);
RNDIS_IPA_ERROR("could not create aggr_type file\n");
debugfs_create_u32
("aggr_byte_limit", flags_read_write,

View File

@@ -444,9 +444,6 @@ static void activate_work_func(struct work_struct *work)
if (client->callback) {
client->callback(client->callback_params,
IPA_PM_CLIENT_ACTIVATED);
} else {
IPA_PM_ERR_RL("client has no callback");
WARN_ON_RATELIMIT_IPA(1);
}
mutex_unlock(&ipa_pm_ctx->client_mutex);
@@ -1256,9 +1253,6 @@ int ipa_pm_handle_suspend(u32 pipe_bitmask, u32 pipe_arr_idx)
client->callback(client->callback_params
, IPA_PM_REQUEST_WAKEUP);
client_notified[client->hdl] = true;
} else {
IPA_PM_ERR("client has no callback");
WARN_ON(1);
}
}
}