From 9f197cc5cf20a84e2b2393ac6718511b3c57c5fc Mon Sep 17 00:00:00 2001 From: Yaroslav Furman Date: Fri, 24 Apr 2020 23:40:38 +0300 Subject: [PATCH] drivers: remove a few loggers Signed-off-by: Yaroslav Furman --- drivers/gpu/drm/msm/dsi-staging/dsi_ctrl.c | 3 --- techpack/audio/asoc/msm-pcm-q6-noirq.c | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/msm/dsi-staging/dsi_ctrl.c b/drivers/gpu/drm/msm/dsi-staging/dsi_ctrl.c index 243c213e89e6..8fcd502e9023 100644 --- a/drivers/gpu/drm/msm/dsi-staging/dsi_ctrl.c +++ b/drivers/gpu/drm/msm/dsi-staging/dsi_ctrl.c @@ -2578,9 +2578,6 @@ static int _dsi_ctrl_setup_isr(struct dsi_ctrl *dsi_ctrl) } else { dsi_ctrl->irq_info.irq_num = irq_num; disable_irq_nosync(irq_num); - - pr_info("[DSI_%d] IRQ %d registered\n", - dsi_ctrl->cell_index, irq_num); } } return rc; diff --git a/techpack/audio/asoc/msm-pcm-q6-noirq.c b/techpack/audio/asoc/msm-pcm-q6-noirq.c index 7ef99e72a89f..cd1ec48aeaaa 100644 --- a/techpack/audio/asoc/msm-pcm-q6-noirq.c +++ b/techpack/audio/asoc/msm-pcm-q6-noirq.c @@ -222,7 +222,7 @@ static int msm_pcm_open(struct snd_pcm_substream *substream) SIO_PLAYBACK_MIN_BYTES, SIO_PLAYBACK_MAX_BYTES); if (ret) { - pr_info("%s: P buffer bytes minmax constraint ret %d\n", + pr_debug("%s: P buffer bytes minmax constraint ret %d\n", __func__, ret); } } else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) { @@ -231,7 +231,7 @@ static int msm_pcm_open(struct snd_pcm_substream *substream) SIO_CAPTURE_MIN_BYTES, SIO_CAPTURE_MAX_BYTES); if (ret) { - pr_info("%s: C buffer bytes minmax constraint ret %d\n", + pr_debug("%s: C buffer bytes minmax constraint ret %d\n", __func__, ret); } }