Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 32d2c7fa authored by Takashi Iwai's avatar Takashi Iwai
Browse files

ALSA: hda - Fix a wrong pin check in snd_hda_parse_pin_def_config()



Fixed a wrong pin check (a typo) for debug print of digital input pin.

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent df223136
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3551,7 +3551,7 @@ int snd_hda_parse_pin_def_config(struct hda_codec *codec,
		   cfg->input_pins[AUTO_PIN_FRONT_LINE],
		   cfg->input_pins[AUTO_PIN_CD],
		   cfg->input_pins[AUTO_PIN_AUX]);
	if (cfg->dig_out_pin)
	if (cfg->dig_in_pin)
		snd_printd("   dig-in=0x%x\n", cfg->dig_in_pin);

	return 0;