diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2016-08-18 12:04:45 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2016-08-18 12:04:45 -0700 |
| commit | cf41212089405e916153d40e2caba3d3dd0c9278 (patch) | |
| tree | b20ffa3f869c59b2bde7813c871cf13eb029d089 | |
| parent | 22f4f2008a15a9d91be6ecdcc301132132e4cf5c (diff) | |
| parent | 8b156ca84fd153940dee0df0d54f4a3c74862695 (diff) | |
Merge "spcom: move some messages to debug"
| -rw-r--r-- | drivers/soc/qcom/spcom.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/soc/qcom/spcom.c b/drivers/soc/qcom/spcom.c index 30eff96fc27d..0c5f3b84162b 100644 --- a/drivers/soc/qcom/spcom.c +++ b/drivers/soc/qcom/spcom.c @@ -1773,7 +1773,7 @@ static int spcom_handle_read_req_resp(struct spcom_channel *ch, if (ch->is_server) { ch->txn_id = hdr->txn_id; - pr_err("request txn_id [0x%x].\n", ch->txn_id); + pr_debug("request txn_id [0x%x].\n", ch->txn_id); } /* copy data to user without the header */ @@ -2145,7 +2145,7 @@ static unsigned int spcom_device_poll(struct file *filp, } if (ready < 0) { /* wait was interrupted */ - pr_err("ch [%s] poll interrupted, ret [%d].\n", name, ready); + pr_debug("ch [%s] poll interrupted, ret [%d].\n", name, ready); ret = POLLERR | SPCOM_POLL_READY_FLAG | mask; } if (done) @@ -2274,7 +2274,7 @@ static int __init spcom_register_chardev(void) goto exit_destroy_device; } - pr_info("char device created.\n"); + pr_debug("char device created.\n"); return 0; |
