armbian_build/patch/kernel/archive/sunxi-6.2/patches.megous/sound-soc-sun8i-codec-Drop-debug-statements.patch
The-going 77674a2b76
Sunxi 6.2 (#4883)
* sunxi-6.2: add megous patches

* sunxi-6.2: add series.conf

* sunxi-6.2: add armbian patches

* sunxi-6.2: mfd: sunxi-ac200: fix error initialization

* sunxi-6.2: Extract patches again after rebasing

---------

Co-authored-by: Igor Pečovnik <igor@armbian.com>
2023-03-03 19:09:22 +01:00

43 lines
1.3 KiB
Diff

From 4e6bba643a110fa7a2f409327e25609bb870a9b3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ond=C5=99ej=20Jirman?= <megi@xff.cz>
Date: Tue, 11 Feb 2020 14:33:08 +0100
Subject: [PATCH 259/391] sound: soc: sun8i-codec: Drop debug statements
Everything seems to work. :)
Signed-off-by: Ondrej Jirman <megi@xff.cz>
---
sound/soc/sunxi/sun8i-codec.c | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/sound/soc/sunxi/sun8i-codec.c b/sound/soc/sunxi/sun8i-codec.c
index f3c2e004f..6a1f94165 100644
--- a/sound/soc/sunxi/sun8i-codec.c
+++ b/sound/soc/sunxi/sun8i-codec.c
@@ -1593,21 +1593,14 @@ static irqreturn_t sun8i_codec_jack_irq(int irq, void *dev_id)
static int sun8i_codec_ac100_regmap_read(void *context, unsigned int reg, unsigned int *val)
{
struct sun8i_codec *scodec = context;
- int ret;
-
- ret = regmap_read(scodec->ac100_regmap, reg / 4, val);
- if (ret == 0)
- pr_err("R%02x => %04x\n", reg / 4, *val);
- return ret;
+ return regmap_read(scodec->ac100_regmap, reg / 4, val);
}
static int sun8i_codec_ac100_regmap_write(void *context, unsigned int reg, unsigned int val)
{
struct sun8i_codec *scodec = context;
- pr_err("W%02x <= %04x\n", reg / 4, val);
-
return regmap_write(scodec->ac100_regmap, reg / 4, val);
}
--
2.35.3