diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2014-01-20 14:35:39 -0500 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-01-21 13:48:35 -0500 |
commit | efe2ab9b0274b60327ca148e101177ba9708b9ba (patch) | |
tree | e14520b7302aa56dac31b7b806b5e9efd4d71dce /sound | |
parent | ae1f8ce1925645b047394a59d4108e27fad9a9d8 (diff) |
ASoC: fsl_ssi: Do not print 'baud clock' error message all the time
Currently everytime we get the following message on boot:
fsl-ssi-dai 202c000.ssi: could not get baud clock: -2
This is not really useful information to get on every boot, so make it a debug
message instead.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/fsl/fsl_ssi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/fsl/fsl_ssi.c b/sound/soc/fsl/fsl_ssi.c index c5205690791e..1c791ddbf006 100644 --- a/sound/soc/fsl/fsl_ssi.c +++ b/sound/soc/fsl/fsl_ssi.c | |||
@@ -1386,7 +1386,7 @@ static int fsl_ssi_probe(struct platform_device *pdev) | |||
1386 | */ | 1386 | */ |
1387 | ssi_private->baudclk = devm_clk_get(&pdev->dev, "baud"); | 1387 | ssi_private->baudclk = devm_clk_get(&pdev->dev, "baud"); |
1388 | if (IS_ERR(ssi_private->baudclk)) | 1388 | if (IS_ERR(ssi_private->baudclk)) |
1389 | dev_warn(&pdev->dev, "could not get baud clock: %ld\n", | 1389 | dev_dbg(&pdev->dev, "could not get baud clock: %ld\n", |
1390 | PTR_ERR(ssi_private->baudclk)); | 1390 | PTR_ERR(ssi_private->baudclk)); |
1391 | else | 1391 | else |
1392 | clk_prepare_enable(ssi_private->baudclk); | 1392 | clk_prepare_enable(ssi_private->baudclk); |