diff options
author | Takashi Iwai <tiwai@suse.de> | 2011-05-26 14:10:44 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-05-26 14:10:44 +0200 |
commit | 0b6267376d1113bf8e09ae655919e6f0bbe90d01 (patch) | |
tree | 2520430eb0c332d20f56a598a0b0b285dec596ce /sound | |
parent | 739266566ae9ba6b01ed3a01165171705fa2974e (diff) | |
download | op-kernel-dev-0b6267376d1113bf8e09ae655919e6f0bbe90d01.zip op-kernel-dev-0b6267376d1113bf8e09ae655919e6f0bbe90d01.tar.gz |
ALSA: hda - Use snd_printd() in snd_hda_parse_pin_def_config()
Fixed the wrong usage of snd_printdd() for debug prints of input
entries. It should be snd_printd() like others.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-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 8edd998..45b4a8d 100644 --- a/sound/pci/hda/hda_codec.c +++ b/sound/pci/hda/hda_codec.c @@ -4719,7 +4719,7 @@ int snd_hda_parse_pin_def_config(struct hda_codec *codec, cfg->dig_out_pins[0], cfg->dig_out_pins[1]); snd_printd(" inputs:"); for (i = 0; i < cfg->num_inputs; i++) { - snd_printdd(" %s=0x%x", + snd_printd(" %s=0x%x", hda_get_autocfg_input_label(codec, cfg, i), cfg->inputs[i].pin); } |