build/patch/kernel/archive/sunxi-5.10/megous/sound-soc-sun8i-codec-Drop-debug-statements.patch

43 lines
1.3 KiB
Diff

From a101a95b2207709a8578e71bfdae17df1b01133f Mon Sep 17 00:00:00 2001
From: Ondrej Jirman <megous@megous.com>
Date: Tue, 11 Feb 2020 14:33:08 +0100
Subject: [PATCH 331/351] sound: soc: sun8i-codec: Drop debug statements
Everything seems to work. :)
Signed-off-by: Ondrej Jirman <megous@megous.com>
---
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 011405c91256..4265d77e13aa 100644
--- a/sound/soc/sunxi/sun8i-codec.c
+++ b/sound/soc/sunxi/sun8i-codec.c
@@ -1594,21 +1594,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.34.0