43 lines
1.3 KiB
Diff
43 lines
1.3 KiB
Diff
From 77f3a38073386f50b893f42967e39ad718bf8007 Mon Sep 17 00:00:00 2001
|
|
From: Ondrej Jirman <megous@megous.com>
|
|
Date: Tue, 11 Feb 2020 14:33:08 +0100
|
|
Subject: [PATCH 403/478] 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 3bcc7457e8cf..d114e615f747 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.35.3
|
|
|