提交 b7ede5de 编写于 作者: L Lars-Peter Clausen 提交者: Mark Brown

ASoC: blackfin: bf5xx-i2s: Use dev_{err, dbg} instead of pr_{error, debug}

Using dev_{err,dbg} instead of pr_{error,debug} makes it easier to recognize
which device created the message.
Signed-off-by: NLars-Peter Clausen <lars@metafoo.de>
Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
上级 d65f63da
...@@ -74,7 +74,8 @@ static int bf5xx_i2s_set_dai_fmt(struct snd_soc_dai *cpu_dai, ...@@ -74,7 +74,8 @@ static int bf5xx_i2s_set_dai_fmt(struct snd_soc_dai *cpu_dai,
ret = -EINVAL; ret = -EINVAL;
break; break;
default: default:
printk(KERN_ERR "%s: Unknown DAI format type\n", __func__); dev_err(cpu_dai->dev, "%s: Unknown DAI format type\n",
__func__);
ret = -EINVAL; ret = -EINVAL;
break; break;
} }
...@@ -88,7 +89,8 @@ static int bf5xx_i2s_set_dai_fmt(struct snd_soc_dai *cpu_dai, ...@@ -88,7 +89,8 @@ static int bf5xx_i2s_set_dai_fmt(struct snd_soc_dai *cpu_dai,
ret = -EINVAL; ret = -EINVAL;
break; break;
default: default:
printk(KERN_ERR "%s: Unknown DAI master type\n", __func__); dev_err(cpu_dai->dev, "%s: Unknown DAI master type\n",
__func__);
ret = -EINVAL; ret = -EINVAL;
break; break;
} }
...@@ -141,14 +143,14 @@ static int bf5xx_i2s_hw_params(struct snd_pcm_substream *substream, ...@@ -141,14 +143,14 @@ static int bf5xx_i2s_hw_params(struct snd_pcm_substream *substream,
ret = sport_config_rx(sport_handle, bf5xx_i2s->rcr1, ret = sport_config_rx(sport_handle, bf5xx_i2s->rcr1,
bf5xx_i2s->rcr2, 0, 0); bf5xx_i2s->rcr2, 0, 0);
if (ret) { if (ret) {
pr_err("SPORT is busy!\n"); dev_err(dai->dev, "SPORT is busy!\n");
return -EBUSY; return -EBUSY;
} }
ret = sport_config_tx(sport_handle, bf5xx_i2s->tcr1, ret = sport_config_tx(sport_handle, bf5xx_i2s->tcr1,
bf5xx_i2s->tcr2, 0, 0); bf5xx_i2s->tcr2, 0, 0);
if (ret) { if (ret) {
pr_err("SPORT is busy!\n"); dev_err(dai->dev, "SPORT is busy!\n");
return -EBUSY; return -EBUSY;
} }
} }
...@@ -162,7 +164,7 @@ static void bf5xx_i2s_shutdown(struct snd_pcm_substream *substream, ...@@ -162,7 +164,7 @@ static void bf5xx_i2s_shutdown(struct snd_pcm_substream *substream,
struct sport_device *sport_handle = snd_soc_dai_get_drvdata(dai); struct sport_device *sport_handle = snd_soc_dai_get_drvdata(dai);
struct bf5xx_i2s_port *bf5xx_i2s = sport_handle->private_data; struct bf5xx_i2s_port *bf5xx_i2s = sport_handle->private_data;
pr_debug("%s enter\n", __func__); dev_dbg(dai->dev, "%s enter\n", __func__);
/* No active stream, SPORT is allowed to be configured again. */ /* No active stream, SPORT is allowed to be configured again. */
if (!dai->active) if (!dai->active)
bf5xx_i2s->configured = 0; bf5xx_i2s->configured = 0;
...@@ -173,7 +175,7 @@ static int bf5xx_i2s_suspend(struct snd_soc_dai *dai) ...@@ -173,7 +175,7 @@ static int bf5xx_i2s_suspend(struct snd_soc_dai *dai)
{ {
struct sport_device *sport_handle = snd_soc_dai_get_drvdata(dai); struct sport_device *sport_handle = snd_soc_dai_get_drvdata(dai);
pr_debug("%s : sport %d\n", __func__, dai->id); dev_dbg(dai->dev, "%s : sport %d\n", __func__, dai->id);
if (dai->capture_active) if (dai->capture_active)
sport_rx_stop(sport_handle); sport_rx_stop(sport_handle);
...@@ -188,19 +190,19 @@ static int bf5xx_i2s_resume(struct snd_soc_dai *dai) ...@@ -188,19 +190,19 @@ static int bf5xx_i2s_resume(struct snd_soc_dai *dai)
struct bf5xx_i2s_port *bf5xx_i2s = sport_handle->private_data; struct bf5xx_i2s_port *bf5xx_i2s = sport_handle->private_data;
int ret; int ret;
pr_debug("%s : sport %d\n", __func__, dai->id); dev_dbg(dai->dev, "%s : sport %d\n", __func__, dai->id);
ret = sport_config_rx(sport_handle, bf5xx_i2s->rcr1, ret = sport_config_rx(sport_handle, bf5xx_i2s->rcr1,
bf5xx_i2s->rcr2, 0, 0); bf5xx_i2s->rcr2, 0, 0);
if (ret) { if (ret) {
pr_err("SPORT is busy!\n"); dev_err(dai->dev, "SPORT is busy!\n");
return -EBUSY; return -EBUSY;
} }
ret = sport_config_tx(sport_handle, bf5xx_i2s->tcr1, ret = sport_config_tx(sport_handle, bf5xx_i2s->tcr1,
bf5xx_i2s->tcr2, 0, 0); bf5xx_i2s->tcr2, 0, 0);
if (ret) { if (ret) {
pr_err("SPORT is busy!\n"); dev_err(dai->dev, "SPORT is busy!\n");
return -EBUSY; return -EBUSY;
} }
...@@ -264,7 +266,7 @@ static int bf5xx_i2s_probe(struct platform_device *pdev) ...@@ -264,7 +266,7 @@ static int bf5xx_i2s_probe(struct platform_device *pdev)
ret = snd_soc_register_component(&pdev->dev, &bf5xx_i2s_component, ret = snd_soc_register_component(&pdev->dev, &bf5xx_i2s_component,
&bf5xx_i2s_dai, 1); &bf5xx_i2s_dai, 1);
if (ret) { if (ret) {
pr_err("Failed to register DAI: %d\n", ret); dev_err(&pdev->dev, "Failed to register DAI: %d\n", ret);
sport_done(sport_handle); sport_done(sport_handle);
return ret; return ret;
} }
...@@ -276,7 +278,7 @@ static int bf5xx_i2s_remove(struct platform_device *pdev) ...@@ -276,7 +278,7 @@ static int bf5xx_i2s_remove(struct platform_device *pdev)
{ {
struct sport_device *sport_handle = platform_get_drvdata(pdev); struct sport_device *sport_handle = platform_get_drvdata(pdev);
pr_debug("%s enter\n", __func__); dev_dbg(&pdev->dev, "%s enter\n", __func__);
snd_soc_unregister_component(&pdev->dev); snd_soc_unregister_component(&pdev->dev);
sport_done(sport_handle); sport_done(sport_handle);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册