aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorBaojun Xu <baojun.xu@ti.com>2025-08-01 10:16:18 +0800
committerMark Brown <broonie@kernel.org>2025-08-01 14:36:13 +0100
commit9843cf7b6fd6f938c16fde51e86dd0e3ddbefb12 (patch)
tree402e00cb2d0f7fd934a2f728a43d68e030f33b4a
parentASoC: Intel: avs: Fix uninitialized pointer error in probe() (diff)
downloadwireguard-linux-9843cf7b6fd6f938c16fde51e86dd0e3ddbefb12.tar.xz
wireguard-linux-9843cf7b6fd6f938c16fde51e86dd0e3ddbefb12.zip
ASoC: tas2781: Fix the wrong step for TLV on tas2781
The step for TLV on tas2781, should be 50 (-0.5dB). Fixes: 678f38eba1f2 ("ASoC: tas2781: Add Header file for tas2781 driver") Signed-off-by: Baojun Xu <baojun.xu@ti.com> Link: https://patch.msgid.link/20250801021618.64627-1-baojun.xu@ti.com Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--include/sound/tas2781-tlv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sound/tas2781-tlv.h b/include/sound/tas2781-tlv.h
index d87263e43fdb..ef9b9f19d212 100644
--- a/include/sound/tas2781-tlv.h
+++ b/include/sound/tas2781-tlv.h
@@ -15,7 +15,7 @@
#ifndef __TAS2781_TLV_H__
#define __TAS2781_TLV_H__
-static const __maybe_unused DECLARE_TLV_DB_SCALE(dvc_tlv, -10000, 100, 0);
+static const __maybe_unused DECLARE_TLV_DB_SCALE(dvc_tlv, -10000, 50, 0);
static const __maybe_unused DECLARE_TLV_DB_SCALE(amp_vol_tlv, 1100, 50, 0);
#endif