svn commit: r291768 - head/sys/modules/ahci

Andrew Turner andrew at FreeBSD.org
Fri Dec 4 13:32:01 UTC 2015


Author: andrew
Date: Fri Dec  4 13:32:00 2015
New Revision: 291768
URL: https://svnweb.freebsd.org/changeset/base/291768

Log:
  Add ahci_generic to the ahci module on arm64.
  
  Pointed out by:	kib

Modified:
  head/sys/modules/ahci/Makefile

Modified: head/sys/modules/ahci/Makefile
==============================================================================
--- head/sys/modules/ahci/Makefile	Fri Dec  4 13:26:12 2015	(r291767)
+++ head/sys/modules/ahci/Makefile	Fri Dec  4 13:32:00 2015	(r291768)
@@ -5,4 +5,8 @@
 KMOD=	ahci
 SRCS=	ahci.c ahci_pci.c ahciem.c ahci.h device_if.h bus_if.h pci_if.h opt_cam.h
 
+.if ${MACHINE_CPUARCH} == "aarch64"
+SRCS+=	ahci_generic.c
+.endif
+
 .include <bsd.kmod.mk>


More information about the svn-src-head mailing list