summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/samsung/odroidx2_max98090.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/sound/soc/samsung/odroidx2_max98090.c b/sound/soc/samsung/odroidx2_max98090.c
index d8f4fe79ee6..4ac69024619 100644
--- a/sound/soc/samsung/odroidx2_max98090.c
+++ b/sound/soc/samsung/odroidx2_max98090.c
@@ -38,12 +38,9 @@ static int odroidx2_hw_params(struct snd_pcm_substream *substream,
if (ret < 0)
return ret;
- dev_info(codec_dai->dev,
- "HiFi DAI %s params ch %d, rate %d as i2s slave\n",
- ((substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ?
- "playback" : "capture"),
- params_channels(params),
- params_rate(params));
+ dev_dbg(codec_dai->dev, "HiFi DAI %s params: channels: %d, rate: %d\n",
+ snd_pcm_stream_str(substream), params_channels(params),
+ params_rate(params));
return 0;
}