Skip to content

Commit

Permalink
Merge pull request torvalds#327 from vjr/fix-asus-zenbook-um5302ta-sound
Browse files Browse the repository at this point in the history
Patch to fix sound on ASUS Zenbook S 13 OLED laptop model UM5302TA
  • Loading branch information
xanmod authored Dec 21, 2022
2 parents 2e80ef7 + b106d1e commit 2327576
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/pci/hda/cs35l41_hda.c
Original file line number Diff line number Diff line change
Expand Up @@ -1231,7 +1231,7 @@ static int cs35l41_no_acpi_dsd(struct cs35l41_hda *cs35l41, struct device *physd

if (strncmp(hid, "CLSA0100", 8) == 0) {
hw_cfg->bst_type = CS35L41_EXT_BOOST_NO_VSPK_SWITCH;
} else if (strncmp(hid, "CLSA0101", 8) == 0) {
} else if (strncmp(hid, "CLSA0101", 8) == 0 || strncmp(hid, "CSC3551", 7) == 0) {
hw_cfg->bst_type = CS35L41_EXT_BOOST;
hw_cfg->gpio1.func = CS35l41_VSPK_SWITCH;
hw_cfg->gpio1.valid = true;
Expand Down

0 comments on commit 2327576

Please sign in to comment.