diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-03-06 19:13:43 +0100 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-03-06 19:13:43 +0100 |
commit | b52a5195efd6173c06107ca5beb44389130596dc (patch) | |
tree | c934c0af90589f3017d2175ff76c6f75cc0883db /sound/soc/s3c24xx/s3c24xx-pcm.c | |
parent | ASoC: Re-remove hand-rolled pr_debug() macros (diff) | |
download | linux-b52a5195efd6173c06107ca5beb44389130596dc.tar.xz linux-b52a5195efd6173c06107ca5beb44389130596dc.zip |
ASoC: Fix logging severity for some S3C error messages
Upgrade the severity of some failure messages from debug level so
they're displayed by default.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/s3c24xx/s3c24xx-pcm.c')
-rw-r--r-- | sound/soc/s3c24xx/s3c24xx-pcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/s3c24xx/s3c24xx-pcm.c b/sound/soc/s3c24xx/s3c24xx-pcm.c index 269f5c8e7ca8..a9d68fa2b34a 100644 --- a/sound/soc/s3c24xx/s3c24xx-pcm.c +++ b/sound/soc/s3c24xx/s3c24xx-pcm.c @@ -161,7 +161,7 @@ static int s3c24xx_pcm_hw_params(struct snd_pcm_substream *substream, prtd->params->client, NULL); if (ret < 0) { - pr_debug(KERN_ERR "failed to get dma channel\n"); + printk(KERN_ERR "failed to get dma channel\n"); return ret; } } |