Skip to content

Commit 35a357b

Browse files
marcanjannau
authored andcommitted
macaudio: Use the same volume limit for all amps
These are unintentionally aliased. Pending a solution for this, let's just use the same limit for now. Signed-off-by: Hector Martin <marcan@marcan.st>
1 parent 8b53253 commit 35a357b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

sound/soc/apple/macaudio.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1186,7 +1186,8 @@ struct macaudio_platform_cfg macaudio_j413_cfg = {
11861186
/* Min gain: -17.47 dB */
11871187
{.match = "* Tweeter Speaker Volume", TAS2764_DB_REDUCTION(20), TAS2764_0DB},
11881188
/* Min gain: -10.63 dB */
1189-
{.match = "* Woofer Speaker Volume", TAS2764_DB_REDUCTION(14), TAS2764_0DB},
1189+
/* FIXME: These structures are aliased so we can't set different max volumes */
1190+
{.match = "* Woofer Speaker Volume", TAS2764_DB_REDUCTION(20), TAS2764_0DB},
11901191
}
11911192
};
11921193

0 commit comments

Comments
 (0)