Date: Fri, 4 Dec 2015 13:32:00 +0000 (UTC) From: Andrew Turner <andrew@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r291768 - head/sys/modules/ahci Message-ID: <201512041332.tB4DW00D035554@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512041332.tB4DW00D035554>