Commit b52a5195 authored by Mark Brown's avatar Mark Brown

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: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent ee7d4767
...@@ -553,7 +553,7 @@ int s3c_i2sv2_probe(struct platform_device *pdev, ...@@ -553,7 +553,7 @@ int s3c_i2sv2_probe(struct platform_device *pdev,
i2s->iis_pclk = clk_get(dev, "iis"); i2s->iis_pclk = clk_get(dev, "iis");
if (i2s->iis_pclk == NULL) { if (i2s->iis_pclk == NULL) {
pr_debug("failed to get iis_clock\n"); dev_err(dev, "failed to get iis_clock\n");
iounmap(i2s->regs); iounmap(i2s->regs);
return -ENOENT; return -ENOENT;
} }
......
...@@ -390,7 +390,7 @@ static int s3c24xx_i2s_probe(struct platform_device *pdev, ...@@ -390,7 +390,7 @@ static int s3c24xx_i2s_probe(struct platform_device *pdev,
s3c24xx_i2s.iis_clk = clk_get(&pdev->dev, "iis"); s3c24xx_i2s.iis_clk = clk_get(&pdev->dev, "iis");
if (s3c24xx_i2s.iis_clk == NULL) { if (s3c24xx_i2s.iis_clk == NULL) {
pr_debug("failed to get iis_clock\n"); pr_err("failed to get iis_clock\n");
iounmap(s3c24xx_i2s.regs); iounmap(s3c24xx_i2s.regs);
return -ENODEV; return -ENODEV;
} }
......
...@@ -161,7 +161,7 @@ static int s3c24xx_pcm_hw_params(struct snd_pcm_substream *substream, ...@@ -161,7 +161,7 @@ static int s3c24xx_pcm_hw_params(struct snd_pcm_substream *substream,
prtd->params->client, NULL); prtd->params->client, NULL);
if (ret < 0) { if (ret < 0) {
pr_debug(KERN_ERR "failed to get dma channel\n"); printk(KERN_ERR "failed to get dma channel\n");
return ret; return ret;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment