mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 02:50:49 +09:00
ASoC: Intel: soc-acpi-byt: Fix "WM510205" match no longer working
[ Upstream commitc963e2ec09] Commit7e1d728a94("ASoC: Intel: soc-acpi-byt: Add new WM5102 ACPI HID") added an extra HID to wm5102_comp_ids.codecs, but it forgot to bump wm5102_comp_ids.num_codecs, causing the last codec HID in the codecs list to no longer work. Bump wm5102_comp_ids.num_codecs to fix this. Fixes:7e1d728a94("ASoC: Intel: soc-acpi-byt: Add new WM5102 ACPI HID") Signed-off-by: Hans de Goede <hdegoede@redhat.com> Acked-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20230421183714.35186-1-hdegoede@redhat.com Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
1193a36f58
commit
e60e5d6722
@@ -124,7 +124,7 @@ static const struct snd_soc_acpi_codecs rt5640_comp_ids = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static const struct snd_soc_acpi_codecs wm5102_comp_ids = {
|
static const struct snd_soc_acpi_codecs wm5102_comp_ids = {
|
||||||
.num_codecs = 2,
|
.num_codecs = 3,
|
||||||
.codecs = { "10WM5102", "WM510204", "WM510205"},
|
.codecs = { "10WM5102", "WM510204", "WM510205"},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user