Skip to content

Commit f09e16e

Browse files
Mark Hasemeyergregkh
authored andcommitted
ALSA: hda: intel-dsp-config: Fix JSL Chromebook quirk detection
commit 7c05b44 upstream. Some Jasperlake Chromebooks overwrite the system vendor DMI value to the name of the OEM that manufactured the device. This breaks Chromebook quirk detection as it expects the system vendor to be "Google". Add another quirk detection entry that looks for "Google" in the BIOS version. Cc: [email protected] Signed-off-by: Mark Hasemeyer <[email protected]> Reviewed-by: Pierre-Louis Bossart <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Takashi Iwai <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent f112530 commit f09e16e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

sound/hda/intel-dsp-config.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,12 @@ static const struct config_entry config_table[] = {
336336
DMI_MATCH(DMI_SYS_VENDOR, "Google"),
337337
}
338338
},
339+
{
340+
.ident = "Google firmware",
341+
.matches = {
342+
DMI_MATCH(DMI_BIOS_VERSION, "Google"),
343+
}
344+
},
339345
{}
340346
}
341347
},

0 commit comments

Comments
 (0)