Skip to content

Commit 579cd64

Browse files
marcanbroonie
authored andcommitted
ASoC: tas2770: Fix volume scale
The scale starts at -100dB, not -128dB. Signed-off-by: Hector Martin <[email protected]> Signed-off-by: Mark Brown <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Mark Brown <[email protected]>
1 parent 571b69f commit 579cd64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sound/soc/codecs/tas2770.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ static int tas2770_codec_probe(struct snd_soc_component *component)
506506
}
507507

508508
static DECLARE_TLV_DB_SCALE(tas2770_digital_tlv, 1100, 50, 0);
509-
static DECLARE_TLV_DB_SCALE(tas2770_playback_volume, -12750, 50, 0);
509+
static DECLARE_TLV_DB_SCALE(tas2770_playback_volume, -10050, 50, 0);
510510

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

0 commit comments

Comments
 (0)