Commit a0cb9dbf authored by Jaroslav Kysela's avatar Jaroslav Kysela

[ALSA] remove an unnecessary printk

EMU10K1/EMU10K2 driver
This patch removes an unnecessary printk accidentally left in the
multichannel patch.
Signed-off-by: default avatarLee Revell <rlrevell@joe-job.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 373beab0
...@@ -69,11 +69,9 @@ static int voice_alloc(emu10k1_t *emu, emu10k1_voice_type_t type, int number, em ...@@ -69,11 +69,9 @@ static int voice_alloc(emu10k1_t *emu, emu10k1_voice_type_t type, int number, em
skip = 0; skip = 0;
for (k = 0; k < number; k++) { for (k = 0; k < number; k++) {
voice = &emu->voices[(i+k) % NUM_G]; voice = &emu->voices[(i+k) % NUM_G];
if (voice->use) { if (voice->use)
printk("voice %d: use=1!\n", i+k);
skip = 1; skip = 1;
} }
}
if (!skip) { if (!skip) {
// printk("allocated voice %d\n", i); // printk("allocated voice %d\n", i);
first_voice = i; first_voice = i;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment