The following reply was made to PR kernel/6429; it has been noted by GNATS.
From: Jacob Meuser <[email protected]> To: [email protected] Cc: [email protected], [email protected] Subject: Re: kernel/6429: No sound with Intel device Date: Fri, 23 Jul 2010 22:29:48 +0000 On Sun, Jul 11, 2010 at 08:00:59PM -0300, [email protected] wrote: > >Number: 6429 > >Category: kernel > >Synopsis: No sound with Intel device > I am not able to reproduce any sound on my system. As far as I > understand the device is recognized and functional but there is still no > sound. I've tried the following, as explained in OpenBSD FAQ: > bios0: Apple Inc. Macmini3,1 > azalia0: codecs: Realtek ALC885 please try the following -- [email protected] SDF Public Access UNIX System - http://sdf.lonestar.org Index: azalia_codec.c =================================================================== RCS file: /cvs/src/sys/dev/pci/azalia_codec.c,v retrieving revision 1.147 diff -u -p azalia_codec.c --- azalia_codec.c 27 Jun 2010 21:47:07 -0000 1.147 +++ azalia_codec.c 23 Jul 2010 22:24:37 -0000 @@ -132,9 +132,13 @@ azalia_codec_init_vtbl(codec_t *this) this->subid == 0x00a3106b) { /* APPLE_MB4 */ this->qrks |= AZ_QRK_GPIO_UNMUTE_0; } - if (this->subid == 0x00a1106b || - this->subid == 0x00a0106b) + if (this->subid == 0x4100106b) { /* APPLE_MACMINI3 */ + this->qrks |= AZ_QRK_GPIO_UNMUTE_1; + } + if (this->subid == 0x00a1106b || /* APPLE_MB3 */ + this->subid == 0x00a0106b) { /* APPLE_MB3_1 */ this->qrks |= AZ_QRK_WID_OVREF50; + } break; case 0x10ec0888: this->name = "Realtek ALC888";
