Subject: Re: PCI Brooktree product 0x0878
To: Mario Kemper <magick@zhadum.de>
From: Scott Presnell <srp@zgi.com>
List: current-users
Date: 10/03/2001 07:03:32
Mario Kemper wrote:
> 
> "Jared D. McNeill" <jmcneill@invisible.yi.org> writes:
> 
> > I did a bit of investigating on the following message:
> >   Brooktree product 0x0878 (miscellaneous multimedia, revision 0x02) at
> > pci0 dev 14 function 1 not configured
> > and here's what I've come up with.
> >
> > Linux seems to have a driver named 'btaudio' which matches the PCI
> > vendor and product IDs for this device (linux/drivers/sound/btaudio.c).
> >
> > So, it looks to me like these things have a sound card built-in. I'll
> > look into doing a driver up for this thing if I can find the time.
> >
> Hmm, i've ever wondered what this thingie was. Could it be the reason my
> MSP3415D-B3 never emitted any sound so far?

You might try the patch I came up with but with your chip number, e.g.:
at line 438 in bktr_audio.c

 if (strncmp("3430G", bktr->msp_version_string, 5) == 0) {

to:

 if (strncmp("3430G", bktr->msp_version_string, 5) == 0 ||
        strncmp("3415G", bktr->msp_version_string, 5) == 0 ){

If you get a chance to try that, please let me know of the result.
If it works to get the audio of your card started, please let me know
if mute also works, and/or if the audio is muted or turned off when
you quit fxtv (or whatever viewer you are using).

	Thanks.

	- Scott