diff options
| -rw-r--r-- | sound/pci/hda/patch_realtek.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 91a538173c97..7a73621a8909 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -578,6 +578,10 @@ static void alc_line_automute(struct hda_codec *codec)  {  	struct alc_spec *spec = codec->spec; +	/* check LO jack only when it's different from HP */ +	if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0]) +		return; +  	spec->line_jack_present =  		detect_jacks(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),  			     spec->autocfg.line_out_pins); | 
