diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2009-01-07 07:19:40 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2009-01-07 07:19:40 +0000 |
commit | 9d0c85ba618325e63d3f80836507416fc53d08aa (patch) | |
tree | 36fd62c9b45bd5575cbd6acbf72490e617ade4a3 /sys/dev/pci/azalia_codec.c | |
parent | 488f49106924d0e2ef44eaa69d611305bdc2e2eb (diff) |
Add Dell Latitude E6500 to mute quirk. This makes my shiny E6500 play some
nice mp3s.
From brad, ok jakemsr
Diffstat (limited to 'sys/dev/pci/azalia_codec.c')
-rw-r--r-- | sys/dev/pci/azalia_codec.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/azalia_codec.c b/sys/dev/pci/azalia_codec.c index 22bc967f117..b7dba2d3908 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.112 2009/01/05 09:50:37 jakemsr Exp $ */ +/* $OpenBSD: azalia_codec.c,v 1.113 2009/01/07 07:19:39 marco Exp $ */ /* $NetBSD: azalia_codec.c,v 1.8 2006/05/10 11:17:27 kent Exp $ */ /*- @@ -61,6 +61,7 @@ #define STAC9205_DELL_V1500 0x02281028 #define IDT_92HD71B7 0x111d76b2 #define IDT92HD71B7_DELL_E6400 0x02331028 +#define IDT92HD71B7_DELL_E6500 0x024f1028 #define SIGMATEL_STAC9228X 0x83847616 #define STAC9228X_DELL_V1400 0x02271028 @@ -2219,6 +2220,7 @@ azalia_codec_gpio_quirks(codec_t *this) (this->vid == REALTEK_ALC885 && this->subid == ALC885_APPLE_MB3) || (this->vid == REALTEK_ALC885 && this->subid == ALC885_APPLE_MB4) || (this->vid == IDT_92HD71B7 && this->subid == IDT92HD71B7_DELL_E6400) || + (this->vid == IDT_92HD71B7 && this->subid == IDT92HD71B7_DELL_E6500) || (this->vid == SIGMATEL_STAC9205 && this->subid == STAC9205_DELL_D630) || (this->vid == SIGMATEL_STAC9205 && this->subid == STAC9205_DELL_V1500)) { azalia_gpio_unmute(this, 0); |