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

Marcin Wojtas mw at FreeBSD.org
Sat Sep 9 11:01:46 UTC 2017


Author: mw
Date: Sat Sep  9 11:01:44 2017
New Revision: 323356
URL: https://svnweb.freebsd.org/changeset/base/323356

Log:
  Add support for AHCI in Armada 3700
  
  This patch simply AHCI generic driver by extending compatible list.
  
  Submitted by: Patryk Duda <pdk at semihalf.com>
  Obtained from: Semihalf
  Sponsored by: Semihalf
  Differential Revision: https://reviews.freebsd.org/D12254

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

Modified: head/sys/dev/ahci/ahci_generic.c
==============================================================================
--- head/sys/dev/ahci/ahci_generic.c	Sat Sep  9 11:00:07 2017	(r323355)
+++ head/sys/dev/ahci/ahci_generic.c	Sat Sep  9 11:01:44 2017	(r323356)
@@ -60,9 +60,10 @@ __FBSDID("$FreeBSD$");
 #include <dev/ofw/ofw_bus_subr.h>
 
 static struct ofw_compat_data compat_data[] = {
-	{"generic-ahci", 	1},
-	{"snps,dwc-ahci",	1},
-	{NULL,			0}
+	{"generic-ahci", 		1},
+	{"snps,dwc-ahci",		1},
+	{"marvell,armada-3700-ahci",	1},
+	{NULL,				0}
 };
 
 static int


More information about the svn-src-all mailing list