diff options
author | Takashi Iwai <tiwai@suse.de> | 2011-05-03 10:36:09 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-05-03 10:40:53 -0400 |
commit | a426c787233c87587b6cac797ac840162bdb09c2 (patch) | |
tree | 62366b22400d635333772ec4274e6100891834ea /sound/pci/lola | |
parent | c772bbe69a0171f12ad2adde5c150b4e211365ec (diff) |
ALSA: lola - Suppress the debug print
Use snd_printdd() for less important debug messages.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/lola')
-rw-r--r-- | sound/pci/lola/lola.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/pci/lola/lola.c b/sound/pci/lola/lola.c index f59ce085a1a4..16c6cad2e7cd 100644 --- a/sound/pci/lola/lola.c +++ b/sound/pci/lola/lola.c | |||
@@ -447,9 +447,9 @@ static int lola_parse_tree(struct lola *chip) | |||
447 | chip->lola_caps = val; | 447 | chip->lola_caps = val; |
448 | chip->pin[CAPT].num_pins = LOLA_AFG_INPUT_PIN_COUNT(chip->lola_caps); | 448 | chip->pin[CAPT].num_pins = LOLA_AFG_INPUT_PIN_COUNT(chip->lola_caps); |
449 | chip->pin[PLAY].num_pins = LOLA_AFG_OUTPUT_PIN_COUNT(chip->lola_caps); | 449 | chip->pin[PLAY].num_pins = LOLA_AFG_OUTPUT_PIN_COUNT(chip->lola_caps); |
450 | snd_printd(SFX "speccaps=0x%x, pins in=%d, out=%d\n", | 450 | snd_printdd(SFX "speccaps=0x%x, pins in=%d, out=%d\n", |
451 | chip->lola_caps, | 451 | chip->lola_caps, |
452 | chip->pin[CAPT].num_pins, chip->pin[PLAY].num_pins); | 452 | chip->pin[CAPT].num_pins, chip->pin[PLAY].num_pins); |
453 | 453 | ||
454 | if (chip->pin[CAPT].num_pins > MAX_AUDIO_INOUT_COUNT || | 454 | if (chip->pin[CAPT].num_pins > MAX_AUDIO_INOUT_COUNT || |
455 | chip->pin[PLAY].num_pins > MAX_AUDIO_INOUT_COUNT) { | 455 | chip->pin[PLAY].num_pins > MAX_AUDIO_INOUT_COUNT) { |
@@ -600,7 +600,7 @@ static int __devinit lola_create(struct snd_card *card, struct pci_dev *pci, | |||
600 | chip->pcm[CAPT].num_streams = (dever >> 0) & 0x3ff; | 600 | chip->pcm[CAPT].num_streams = (dever >> 0) & 0x3ff; |
601 | chip->pcm[PLAY].num_streams = (dever >> 10) & 0x3ff; | 601 | chip->pcm[PLAY].num_streams = (dever >> 10) & 0x3ff; |
602 | chip->version = (dever >> 24) & 0xff; | 602 | chip->version = (dever >> 24) & 0xff; |
603 | snd_printd(SFX "streams in=%d, out=%d, version=0x%x\n", | 603 | snd_printdd(SFX "streams in=%d, out=%d, version=0x%x\n", |
604 | chip->pcm[CAPT].num_streams, chip->pcm[PLAY].num_streams, | 604 | chip->pcm[CAPT].num_streams, chip->pcm[PLAY].num_streams, |
605 | chip->version); | 605 | chip->version); |
606 | 606 | ||