diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-03-06 13:13:43 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-03-06 13:13:43 -0500 |
commit | b52a5195efd6173c06107ca5beb44389130596dc (patch) | |
tree | c934c0af90589f3017d2175ff76c6f75cc0883db /sound/soc | |
parent | ee7d476714464206317d4420d67e3bfa0308448d (diff) |
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')
-rw-r--r-- | sound/soc/s3c24xx/s3c-i2s-v2.c | 2 | ||||
-rw-r--r-- | sound/soc/s3c24xx/s3c24xx-i2s.c | 2 | ||||
-rw-r--r-- | sound/soc/s3c24xx/s3c24xx-pcm.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/s3c24xx/s3c-i2s-v2.c b/sound/soc/s3c24xx/s3c-i2s-v2.c index b7b8e47ae361..295a4c910262 100644 --- a/sound/soc/s3c24xx/s3c-i2s-v2.c +++ b/sound/soc/s3c24xx/s3c-i2s-v2.c | |||
@@ -553,7 +553,7 @@ int s3c_i2sv2_probe(struct platform_device *pdev, | |||
553 | 553 | ||
554 | i2s->iis_pclk = clk_get(dev, "iis"); | 554 | i2s->iis_pclk = clk_get(dev, "iis"); |
555 | if (i2s->iis_pclk == NULL) { | 555 | if (i2s->iis_pclk == NULL) { |
556 | pr_debug("failed to get iis_clock\n"); | 556 | dev_err(dev, "failed to get iis_clock\n"); |
557 | iounmap(i2s->regs); | 557 | iounmap(i2s->regs); |
558 | return -ENOENT; | 558 | return -ENOENT; |
559 | } | 559 | } |
diff --git a/sound/soc/s3c24xx/s3c24xx-i2s.c b/sound/soc/s3c24xx/s3c24xx-i2s.c index 2fbead33b7c2..580cfed71cc9 100644 --- a/sound/soc/s3c24xx/s3c24xx-i2s.c +++ b/sound/soc/s3c24xx/s3c24xx-i2s.c | |||
@@ -390,7 +390,7 @@ static int s3c24xx_i2s_probe(struct platform_device *pdev, | |||
390 | 390 | ||
391 | s3c24xx_i2s.iis_clk = clk_get(&pdev->dev, "iis"); | 391 | s3c24xx_i2s.iis_clk = clk_get(&pdev->dev, "iis"); |
392 | if (s3c24xx_i2s.iis_clk == NULL) { | 392 | if (s3c24xx_i2s.iis_clk == NULL) { |
393 | pr_debug("failed to get iis_clock\n"); | 393 | pr_err("failed to get iis_clock\n"); |
394 | iounmap(s3c24xx_i2s.regs); | 394 | iounmap(s3c24xx_i2s.regs); |
395 | return -ENODEV; | 395 | return -ENODEV; |
396 | } | 396 | } |
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, | |||
161 | prtd->params->client, NULL); | 161 | prtd->params->client, NULL); |
162 | 162 | ||
163 | if (ret < 0) { | 163 | if (ret < 0) { |
164 | pr_debug(KERN_ERR "failed to get dma channel\n"); | 164 | printk(KERN_ERR "failed to get dma channel\n"); |
165 | return ret; | 165 | return ret; |
166 | } | 166 | } |
167 | } | 167 | } |