diff options
| -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; |
