Skip to content

Commit 97326be

Browse files
Chao Songbroonie
authored andcommitted
ASoC: Intel: soc-acpi: correct device endpoints for max98373
The left speaker of max98373 uses spk_r_endpoint, and right speaker uses spk_l_endpoint, this is obviously wrong. This patch corrects the endpoints for max98373 codec. Signed-off-by: Chao Song <chao.song@linux.intel.com> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20220406192341.271465-1-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent db6dd1b commit 97326be

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sound/soc/intel/common/soc-acpi-intel-tgl-match.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,13 @@ static const struct snd_soc_acpi_adr_device mx8373_1_adr[] = {
132132
{
133133
.adr = 0x000123019F837300ull,
134134
.num_endpoints = 1,
135-
.endpoints = &spk_l_endpoint,
135+
.endpoints = &spk_r_endpoint,
136136
.name_prefix = "Right"
137137
},
138138
{
139139
.adr = 0x000127019F837300ull,
140140
.num_endpoints = 1,
141-
.endpoints = &spk_r_endpoint,
141+
.endpoints = &spk_l_endpoint,
142142
.name_prefix = "Left"
143143
}
144144
};

0 commit comments

Comments
 (0)