diff options
author | 2015-02-27 15:29:18 +0000 | |
---|---|---|
committer | 2015-02-27 15:29:18 +0000 | |
commit | b52691eb3360057e7ce61643c755e56a430d5efc (patch) | |
tree | 1b1cedb19a49ee59ab69d0fd03844d88c0fbeacd | |
parent | regen (diff) | |
download | wireguard-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.c | 4 |
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 } |