1234567891011121314151617181920212223242526272829303132333435 |
- From f4389949bf422fe04775c17b833100fa0e95ea68 Mon Sep 17 00:00:00 2001
- From: Codrin Ciubotariu <[email protected]>
- Date: Tue, 3 Nov 2020 12:05:54 +0200
- Subject: [PATCH 122/247] 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 <[email protected]>
- Link: https://lore.kernel.org/r/[email protected]
- Signed-off-by: Mark Brown <[email protected]>
- ---
- sound/soc/atmel/atmel-i2s.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
- diff --git a/sound/soc/atmel/atmel-i2s.c b/sound/soc/atmel/atmel-i2s.c
- index d870f56c44cf..7483c474ccd7 100644
- --- a/sound/soc/atmel/atmel-i2s.c
- +++ b/sound/soc/atmel/atmel-i2s.c
- @@ -581,8 +581,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;
- }
-
- --
- 2.32.0
|