From 1a2a7955a446e6689c9f0b2b7b78a01f9e4169fd Mon Sep 17 00:00:00 2001 From: hselasky Date: Fri, 23 May 2014 06:28:31 +0000 Subject: [PATCH] MFC r265359 and r265780: Remove ISA load dependency for the kernel sound driver module for ARM and MIPS. git-svn-id: svn://svn.freebsd.org/base/stable/10@266576 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- sys/modules/sound/sound/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/modules/sound/sound/Makefile b/sys/modules/sound/sound/Makefile index 42cfc24f0..0db294bce 100644 --- a/sys/modules/sound/sound/Makefile +++ b/sys/modules/sound/sound/Makefile @@ -44,7 +44,8 @@ CLEANFILES+= feeder_eq_gen.h feeder_rate_gen.h snd_fxdiv_gen.h EXPORT_SYMS= YES # XXX evaluate -.if ${MACHINE_CPUARCH} == "sparc64" || ${MACHINE_CPUARCH} == "powerpc" +.if ${MACHINE_CPUARCH} != "i386" && ${MACHINE_CPUARCH} != "amd64" && \ + ${MACHINE_CPUARCH} != "ia64" && ${MACHINE_CPUARCH} != "pc98" # Create an empty opt_isa.h in order to keep kmod.mk from linking in an # existing one from KERNBUILDDIR which possibly has DEV_ISA defined so # sound.ko is always built without isadma support. -- 2.45.0