summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkettenis <kettenis@openbsd.org>2015-02-27 15:29:18 +0000
committerkettenis <kettenis@openbsd.org>2015-02-27 15:29:18 +0000
commitb52691eb3360057e7ce61643c755e56a430d5efc (patch)
tree1b1cedb19a49ee59ab69d0fd03844d88c0fbeacd
parentregen (diff)
downloadwireguard-openbsd-b52691eb3360057e7ce61643c755e56a430d5efc.tar.xz
wireguard-openbsd-b52691eb3360057e7ce61643c755e56a430d5efc.zip
Seems the Samsung SM951 PCIe SSD needs the same quirk as other Samsung SSDs.
ok guenther@, phessler@, jsing@
-rw-r--r--sys/dev/pci/ahci_pci.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/ahci_pci.c b/sys/dev/pci/ahci_pci.c
index bf502d131d1..70defa22f03 100644
--- a/sys/dev/pci/ahci_pci.c
+++ b/sys/dev/pci/ahci_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ahci_pci.c,v 1.9 2015/01/26 04:17:21 brad Exp $ */
+/* $OpenBSD: ahci_pci.c,v 1.10 2015/02/27 15:29:18 kettenis Exp $ */
/*
* Copyright (c) 2006 David Gwynne <dlg@openbsd.org>
@@ -151,6 +151,8 @@ static const struct ahci_device ahci_devices[] = {
NULL, ahci_samsung_attach },
{ PCI_VENDOR_SAMSUNG2, PCI_PRODUCT_SAMSUNG2_XP941,
NULL, ahci_samsung_attach },
+ { PCI_VENDOR_SAMSUNG2, PCI_PRODUCT_SAMSUNG2_SM951,
+ NULL, ahci_samsung_attach },
{ PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8251_SATA,
ahci_no_match, ahci_vt8251_attach }