On Sat, Dec 11, 1999 at 11:31:39AM +0200, Maxim Sobolev wrote:
> Some time ago my soundcard (Vibra 16C), which worked just fine
> previously, stopped being recognised/attached. Following is relevant
> pieces of dmesg and pnpinfo: 
> 
> [...]
> isa_probe_children: probing PnP devices
> unknown0: <Creative ViBRA16C PnP> at port
> 0x220-0x22f,0x330-0x331,0x388-0x38b irq 5 drq 1,5 on isa0
> unknown1: <Game> at port 0x200-0x207 on isa0
> 

Looks like the same problem I had here. Try this path:


*** sbc.c.orig  Mon Dec  6 19:26:31 1999
--- sbc.c       Thu Dec  9 11:37:22 1999
***************
*** 107,113 ****
  
        /* Check pnp ids */
        error = ISA_PNP_PROBE(device_get_parent(dev), dev, sbc_ids);
!       if (error)
                return error;
        else
                return -100;
--- 107,113 ----
  
        /* Check pnp ids */
        error = ISA_PNP_PROBE(device_get_parent(dev), dev, sbc_ids);
!       if (error >= 0)
                return error;
        else
                return -100;



Regards,
        Frank
-- 
~/.signature not found: wellknown error 42


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to