diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-02-11 05:33:13 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-02-11 05:33:13 -0500 |
commit | 32d2c7fa1344ddf51886eddf31e228d139501dc6 (patch) | |
tree | 1656a556608a72a82ec19d3cae031e0c82f0bd51 /sound/pci/hda/hda_codec.c | |
parent | df22313637acf58a9ae9fe890e10443b9be35053 (diff) |
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: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_codec.c')
-rw-r--r-- | sound/pci/hda/hda_codec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c index 93412f335dc4..95f10aec7a06 100644 --- a/sound/pci/hda/hda_codec.c +++ b/sound/pci/hda/hda_codec.c | |||
@@ -3551,7 +3551,7 @@ int snd_hda_parse_pin_def_config(struct hda_codec *codec, | |||
3551 | cfg->input_pins[AUTO_PIN_FRONT_LINE], | 3551 | cfg->input_pins[AUTO_PIN_FRONT_LINE], |
3552 | cfg->input_pins[AUTO_PIN_CD], | 3552 | cfg->input_pins[AUTO_PIN_CD], |
3553 | cfg->input_pins[AUTO_PIN_AUX]); | 3553 | cfg->input_pins[AUTO_PIN_AUX]); |
3554 | if (cfg->dig_out_pin) | 3554 | if (cfg->dig_in_pin) |
3555 | snd_printd(" dig-in=0x%x\n", cfg->dig_in_pin); | 3555 | snd_printd(" dig-in=0x%x\n", cfg->dig_in_pin); |
3556 | 3556 | ||
3557 | return 0; | 3557 | return 0; |