svn commit: r340041 - head/sys/dev/ahci

Martin Wilke miwi at FreeBSD.org
Fri Nov 2 07:48:24 UTC 2018


Author: miwi
Date: Fri Nov  2 07:48:23 2018
New Revision: 340041
URL: https://svnweb.freebsd.org/changeset/base/340041

Log:
  - Add quirk for Samsung on Mac Mini 7,1
  
  PR:		201676
  Submitted by:	Ruben Kerkhof
  Approved by:	araujo (mentor)
  Obtained from:	TrueOS
  Sponsored by:	iXsystems Inc.
  Differential Revision:	https://review.freebsd.org/D17815

Modified:
  head/sys/dev/ahci/ahci_pci.c

Modified: head/sys/dev/ahci/ahci_pci.c
==============================================================================
--- head/sys/dev/ahci/ahci_pci.c	Fri Nov  2 03:25:23 2018	(r340040)
+++ head/sys/dev/ahci/ahci_pci.c	Fri Nov  2 07:48:23 2018	(r340041)
@@ -350,6 +350,7 @@ static const struct {
 	{0x01861039, 0x00, "SiS 968",		0},
 	{0xa01c177d, 0x00, "ThunderX",		AHCI_Q_ABAR0|AHCI_Q_1MSI},
 	{0x00311c36, 0x00, "Annapurna",		AHCI_Q_FORCE_PI|AHCI_Q_RESTORE_CAP|AHCI_Q_NOMSIX},
+	{0x1600144d, 0x00, "Samsung",		AHCI_Q_NOMSI},
 	{0x00000000, 0x00, NULL,		0}
 };
 


More information about the svn-src-all mailing list