> > > pcm0: unable to map register space
> > > device_probe_and_attach: pcm0 attach returned 6
> >
> > This is an Abit BP6 board with two Celeron 366, 256 MByte memory, one
> > Soundblaster PCI 128 (pcm0) and one Hoontech (pcm1) sound card. Below is
> > the complete dmesg from today's current, and the kernel config.
>
> I reported the same problem. PCI 128 uses the same ES1370 chip as the
> Audio PCI.
The following patch from Doug Rabson fixed the USB and sound problem for
me. It has already bee committed to -current. It did not fix the power
management (intpm0) problem.
Steinar Haug, Nethelp consulting, [EMAIL PROTECTED]
----------------------------------------------------------------------
RCS file: /home/ncvs/src/sys/pci/pci.c,v
retrieving revision 1.122
diff -u -r1.122 pci.c
--- pci.c 1999/10/14 21:38:31 1.122
+++ pci.c 1999/10/16 19:11:27
@@ -1032,7 +1032,7 @@
#endif
if (type == SYS_RES_IOPORT && !pci_porten(cfg))
continue;
- if (type == SYS_RES_IOPORT && !pci_memen(cfg))
+ if (type == SYS_RES_MEMORY && !pci_memen(cfg))
continue;
resource_list_add(rl, type, reg,
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message