
Adds latest 6.6 patches from the Raspberry Pi repository. These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.6.y/ With the following command: git format-patch -N v6.6.83..HEAD (HEAD -> 08d4e8f52256bd422d8a1f876411603f627d0a82) Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> (cherry picked from commit 251f76c1c67d62c585d799c38dab31e1385d2ad5)
26 lines
943 B
Diff
26 lines
943 B
Diff
From 4f7341263ebd6ab2ae805c8f27191d24abc05a62 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 */
|