Skip to content

Commit 142b183

Browse files
committed
ASoC: tas2770: Fix volume scale
The scale starts at -100dB, not -128dB. Signed-off-by: Hector Martin <[email protected]>
1 parent 70ab3d9 commit 142b183

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sound/soc/codecs/tas2770.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ static void tas2770_codec_remove(struct snd_soc_component *component)
653653
}
654654

655655
static DECLARE_TLV_DB_SCALE(tas2770_digital_tlv, 1100, 50, 0);
656-
static DECLARE_TLV_DB_SCALE(tas2770_playback_volume, -12750, 50, 0);
656+
static DECLARE_TLV_DB_SCALE(tas2770_playback_volume, -10050, 50, 0);
657657

658658
static const struct snd_kcontrol_new tas2770_snd_controls[] = {
659659
SOC_SINGLE_TLV("Speaker Playback Volume", TAS2770_PLAY_CFG_REG2,

0 commit comments

Comments
 (0)