Deleted Added
full compact
26c26
< * $FreeBSD: head/sys/dev/sound/pci/aureal.c 70291 2000-12-23 03:16:13Z cg $
---
> * $FreeBSD: head/sys/dev/sound/pci/aureal.c 74763 2001-03-24 23:10:29Z cg $
47c47
< static pcmchan_caps au_playcaps = {4000, 48000, au_playfmt, 0};
---
> static struct pcmchan_caps au_playcaps = {4000, 48000, au_playfmt, 0};
56c56
< static pcmchan_caps au_reccaps = {4000, 48000, au_recfmt, 0};
---
> static struct pcmchan_caps au_reccaps = {4000, 48000, au_recfmt, 0};
64,65c64,65
< pcm_channel *channel;
< snd_dbuf *buffer;
---
> struct pcm_channel *channel;
> struct snd_dbuf *buffer;
75a76
> void *lock;
296c297
< auchan_init(kobj_t obj, void *devinfo, snd_dbuf *b, pcm_channel *c, int dir)
---
> auchan_init(kobj_t obj, void *devinfo, struct snd_dbuf *b, struct pcm_channel *c, int dir)
368c369
< static pcmchan_caps *
---
> static struct pcmchan_caps *
623,624c624
< if (!irq
< || bus_setup_intr(dev, irq, INTR_TYPE_TTY, au_intr, au, &ih)) {
---
> if (!irq || snd_setup_intr(dev, irq, 0, au_intr, au, &ih)) {
681c681
< sizeof(snddev_info),
---
> sizeof(struct snddev_info),