diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2015-02-27 15:29:19 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2015-02-27 15:29:19 +0000 |
commit | 2293d94099f0c238dddb07d3c614c50b1e6f021c (patch) | |
tree | ff9fa3967deeadb749724b1163afe567ec145939 /sys/dev/pci/ahci_pci.c | |
parent | 91d2fd2a12674d7ab472551810b765d8a3912205 (diff) |
Seems the Samsung SM951 PCIe SSD needs the same quirk as other Samsung SSDs.
ok guenther@, phessler@, jsing@
Diffstat (limited to 'sys/dev/pci/ahci_pci.c')
-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 } |