Index: alsa-kernel/pci/fm801.c =================================================================== RCS file: /suse/tiwai/cvs/alsa/alsa-kernel/pci/fm801.c,v retrieving revision 1.25 diff -u -r1.25 fm801.c --- alsa-kernel/pci/fm801.c 19 Dec 2002 11:22:33 -0000 1.25 +++ alsa-kernel/pci/fm801.c 19 Dec 2002 11:26:55 -0000 @@ -337,6 +337,7 @@ return -EINVAL; } outw(chip->ply_ctrl, FM801_REG(chip, PLY_CTRL)); + snd_printd("trigger: ply_ctrl = 0x%x\n", chip->ply_ctrl); spin_unlock(&chip->reg_lock); return 0; } @@ -409,6 +410,7 @@ chip->ply_ctrl |= snd_fm801_rate_bits(runtime->rate) << FM801_RATE_SHIFT; chip->ply_buf = 0; outw(chip->ply_ctrl, FM801_REG(chip, PLY_CTRL)); + snd_printd("prepare: ply_ctrl = 0x%x\n", chip->ply_ctrl); outw(chip->ply_count - 1, FM801_REG(chip, PLY_COUNT)); chip->ply_buffer = runtime->dma_addr; chip->ply_pos = 0;