Skip to content

Commit 509ab50

Browse files
KailangYanggregkh
authored andcommitted
ALSA: hda/realtek - Fix ALC700 family no sound issue
commit 2d7fe6185722b0817bb345f62ab06b76a7b26542 upstream. It maybe the typo for ALC700 support patch. To fix the bit value on this patch. Fixes: 6fbae35a3170 ("ALSA: hda/realtek - Add support for new codecs ALC700/ALC701/ALC703") Signed-off-by: Kailang Yang <kailang@realtek.com> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent ef67455 commit 509ab50

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sound/pci/hda/patch_realtek.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6254,7 +6254,7 @@ static int patch_alc269(struct hda_codec *codec)
62546254
case 0x10ec0703:
62556255
spec->codec_variant = ALC269_TYPE_ALC700;
62566256
spec->gen.mixer_nid = 0; /* ALC700 does not have any loopback mixer path */
6257-
alc_update_coef_idx(codec, 0x4a, 0, 1 << 15); /* Combo jack auto trigger control */
6257+
alc_update_coef_idx(codec, 0x4a, 1 << 15, 0); /* Combo jack auto trigger control */
62586258
break;
62596259

62606260
}

0 commit comments

Comments
 (0)