> I just use: > > device pcm0 > > and no more, since I only have a PCI card.
So you reasoned something like This card has nothing to do with ISA, let the PCI routines figure out the parameters by themselves Joachim's Ensoniq driver was the first extension of Luigi's underlying pcm driver for ISA cards towards PCI. Looks like bus issues are not arranged 100%: On my FreeBSD 4.0-CURRENT #10: Fri May 21 19:50:23 CEST 1999 system I changed CONFIG to #device pcm0 at isa? port ? irq 10 drq 1 flags 0x0 device pcm0 at nexus? and got this messages after reboot es0: <AudioPCI ES1370> irq 11 at device 15.0 on pci0 pcm0: using I/O space register mapping at 0x6400 pcm1: unit not configured, perhaps you want pcm0 ? and indeed m...@oranje$ cat /dev/sndstat FreeBSD Audio Driver (981002) May 21 1999 19:50:06 Installed devices: pcm0: <ENSONIQ AudioPCI> at 0x6400 irq 0 dma 0:0 the card is recognized by Luigi's driver. Compare this to what pcm(4) says: device pcm0 ... your first PnP audio card will be unit #1, i.e. it will be accessible as /dev/audio1, /dev/dsp1, etc. Many application default to using /dev/au- dio, so you can create symlinks from /dev/audio etc to the correct device entries as follows: cd /dev rm audio dsp dspW mixer ./MAKEDEV snd1 ln -s audio1 audio ln -s dsp1 dsp ln -s dspW1 dspW ln -s mixer1 mixer (note: the links are laid by MAKEDEV already) instead I had to use unit #0 via ./MAKEDEV snd0 and this way it works OK right now although I think it was not meant to. Regards, Marc To Unsubscribe: send mail to majord...@freebsd.org with "unsubscribe freebsd-current" in the body of the message