Commit 223b78de authored by Jaroslav Kysela's avatar Jaroslav Kysela

ALSA CVS update - Jaroslav Kysela <perex@suse.cz>

Sound Core PDAudioCF driver
akpm@osdl.org
Fix pdaudiocf_irq.c for gcc-3.5
parent 1831f788
......@@ -267,8 +267,8 @@ void pdacf_tasklet(unsigned long private_data)
if (chip->pcm_substream == NULL || chip->pcm_substream->runtime == NULL || !snd_pcm_running(chip->pcm_substream))
return;
(unsigned int)rdp = inw(chip->port + PDAUDIOCF_REG_RDP);
(unsigned int)wdp = inw(chip->port + PDAUDIOCF_REG_WDP);
rdp = inw(chip->port + PDAUDIOCF_REG_RDP);
wdp = inw(chip->port + PDAUDIOCF_REG_WDP);
// printk("TASKLET: rdp = %x, wdp = %x\n", rdp, wdp);
size = wdp - rdp;
if (size < 0)
......
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