diff options
author | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2010-03-21 15:04:36 +0000 |
---|---|---|
committer | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2010-03-21 15:04:36 +0000 |
commit | a454d7f4d40269d5e15677d2cdb39e572fcb9cfb (patch) | |
tree | 6cba33440f20af94c49c86a5e7f3eb55f62f97e2 /sys | |
parent | b74f5ec5b5c2cb5fff825294cb3ab7fee928af78 (diff) |
another macbook that needs reference voltage for output.
problem reported and fix tested by Ted Roby.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/azalia_codec.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/azalia_codec.c b/sys/dev/pci/azalia_codec.c index 0ae6907122c..78453329c59 100644 --- a/sys/dev/pci/azalia_codec.c +++ b/sys/dev/pci/azalia_codec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: azalia_codec.c,v 1.142 2010/03/21 15:02:31 jakemsr Exp $ */ +/* $OpenBSD: azalia_codec.c,v 1.143 2010/03/21 15:04:35 jakemsr Exp $ */ /* $NetBSD: azalia_codec.c,v 1.8 2006/05/10 11:17:27 kent Exp $ */ /*- @@ -132,7 +132,8 @@ azalia_codec_init_vtbl(codec_t *this) this->subid == 0x00a3106b) { /* APPLE_MB4 */ this->qrks |= AZ_QRK_GPIO_UNMUTE_0; } - if (this->subid == 0x00a0106b) + if (this->subid == 0x00a1106b || + this->subid == 0x00a0106b) this->qrks |= AZ_QRK_WID_OVREF50; break; case 0x10ec0888: |