diff options
author | 2009-05-25 05:51:19 +0000 | |
---|---|---|
committer | 2009-05-25 05:51:19 +0000 | |
commit | e1d26283a2ffa308b33e8376e516d498a3429533 (patch) | |
tree | 4ad7574e7adcf45e59cedae2d27a0e2abda48ad5 | |
parent | log the reason before we die in routehandler(); ok krw@ henning@ (diff) | |
download | wireguard-openbsd-e1d26283a2ffa308b33e8376e516d498a3429533.tar.xz wireguard-openbsd-e1d26283a2ffa308b33e8376e516d498a3429533.zip |
Add Dell Latitude E5500 to the mute quirk list.
ok jakemsr@
-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 a088328a49d..69279b07914 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.124 2009/05/17 02:28:26 jakemsr Exp $ */ +/* $OpenBSD: azalia_codec.c,v 1.125 2009/05/25 05:51:19 robert Exp $ */ /* $NetBSD: azalia_codec.c,v 1.8 2006/05/10 11:17:27 kent Exp $ */ /*- @@ -60,6 +60,7 @@ #define STAC9205_DELL_D630 0x01f91028 #define STAC9205_DELL_V1500 0x02281028 #define IDT_92HD71B7 0x111d76b2 +#define IDT92HD71B7_DELL_E5500 0x02631028 #define IDT92HD71B7_DELL_E6400 0x02331028 #define IDT92HD71B7_DELL_E6500 0x024f1028 #define SIGMATEL_STAC9228X 0x83847616 @@ -2309,6 +2310,7 @@ azalia_codec_gpio_quirks(codec_t *this) (this->vid == REALTEK_ALC882 && this->subid == ALC882_ASUS_W2J) || (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_E5500) || (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) || |