Skip to content

Commit

Permalink
Add quirk for MacBook Pro 5,5. From Manav Rathi <mnvrth at gmail.com>.
Browse files Browse the repository at this point in the history
Thanks!
  • Loading branch information
ratchov committed Mar 28, 2017
1 parent 33b5d8a commit a568087
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sys/dev/pci/azalia_codec.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $OpenBSD: azalia_codec.c,v 1.171 2015/12/02 03:11:32 jsg Exp $ */
/* $OpenBSD: azalia_codec.c,v 1.172 2017/03/28 04:54:44 ratchov Exp $ */
/* $NetBSD: azalia_codec.c,v 1.8 2006/05/10 11:17:27 kent Exp $ */

/*-
Expand Down Expand Up @@ -66,7 +66,8 @@ azalia_codec_init_vtbl(codec_t *this)
case 0x10134206:
this->name = "Cirrus Logic CS4206";
if (this->subid == 0xcb8910de || /* APPLE_MBA3_1 */
this->subid == 0x72708086) { /* APPLE_MBA4_1 */
this->subid == 0x72708086 || /* APPLE_MBA4_1 */
this->subid == 0xcb7910de) { /* APPLE_MBP5_5 */
this->qrks |= AZ_QRK_GPIO_UNMUTE_1 |
AZ_QRK_GPIO_UNMUTE_3;
}
Expand Down

0 comments on commit a568087

Please sign in to comment.