These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.12.y With the following command: git format-patch -N v6.12.27..HEAD (HEAD -> 8d3206ee456a5ecdf9ddbfd8e5e231e4f0cd716e) Exceptions: - (def)configs patches - github workflows patches - applied & reverted patches - readme patches - wireless patches Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
25 lines
943 B
Diff
25 lines
943 B
Diff
From e6e79347fb1142cdd9f449ac4b70da085f079027 Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.com>
|
|
Date: Wed, 8 Jan 2025 15:48:35 +0000
|
|
Subject: [PATCH] ASoC: pcm512x: Demote "No SCLK" to debug level
|
|
|
|
Designing a PCM512X-based soundcard with no external SCLK is a valid
|
|
choice supported by the driver. Don't alarm users with messages that
|
|
say "No SCLK, using BCLK: -2" - reclassify them as debug information.
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
|
---
|
|
sound/soc/codecs/pcm512x.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/sound/soc/codecs/pcm512x.c
|
|
+++ b/sound/soc/codecs/pcm512x.c
|
|
@@ -630,7 +630,7 @@ static int pcm512x_dai_startup_slave(str
|
|
struct regmap *regmap = pcm512x->regmap;
|
|
|
|
if (IS_ERR(pcm512x->sclk)) {
|
|
- dev_info(dev, "No SCLK, using BCLK: %ld\n",
|
|
+ dev_dbg(dev, "No SCLK, using BCLK: %ld\n",
|
|
PTR_ERR(pcm512x->sclk));
|
|
|
|
/* Disable reporting of missing SCLK as an error */
|