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,10 +69,8 @@ static int voice_alloc(emu10k1_t *emu, emu10k1_voice_type_t type, int number, em
skip = 0;
for (k = 0; k < number; k++) {
voice = &emu->voices[(i+k) % NUM_G];
if (voice->use) {
printk("voice %d: use=1!\n", i+k);
if (voice->use)
skip = 1;
}
}
if (!skip) {
// printk("allocated voice %d\n", 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