diff options
author | Codrin Ciubotariu <codrin.ciubotariu@microchip.com> | 2020-11-03 13:05:54 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-11-03 16:19:02 +0300 |
commit | f4bf1f4d1385b7cb61a3fc811bb4912d49aa394a (patch) | |
tree | aa13d4b81dba5a0a7c248d0a3118757863df9fae /sound/soc/atmel | |
parent | c1af06a28a0176ceb1fc71408b32aabf53db4470 (diff) | |
download | linux-f4bf1f4d1385b7cb61a3fc811bb4912d49aa394a.tar.xz |
ASoC: atmel-i2s: do not warn if muxclk is missing
Besides the fact that muxclk is optional, muxclk can be set using
assigned-clocks, removing the need to set it in driver. The warning is
thus unneeded, so we can transform it in a debug print, eventually to just
reflect that muxclk was not set by the driver.
Signed-off-by: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
Link: https://lore.kernel.org/r/20201103100554.1307190-1-codrin.ciubotariu@microchip.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/atmel')
-rw-r--r-- | sound/soc/atmel/atmel-i2s.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/atmel/atmel-i2s.c b/sound/soc/atmel/atmel-i2s.c index bbe2b638abb5..232300dda548 100644 --- a/sound/soc/atmel/atmel-i2s.c +++ b/sound/soc/atmel/atmel-i2s.c @@ -563,8 +563,8 @@ static int atmel_i2s_sama5d2_mck_init(struct atmel_i2s_dev *dev, err = PTR_ERR(muxclk); if (err == -EPROBE_DEFER) return -EPROBE_DEFER; - dev_warn(dev->dev, - "failed to get the I2S clock control: %d\n", err); + dev_dbg(dev->dev, + "failed to get the I2S clock control: %d\n", err); return 0; } |