diff --git a/apps/SOURCES b/apps/SOURCES index cd2316fc24..549070b8d1 100644 --- a/apps/SOURCES +++ b/apps/SOURCES @@ -79,5 +79,7 @@ dsp.c eq.c #if defined(CPU_COLDFIRE) && !defined(SIMULATOR) eq_cf.S +#elif defined(CPU_ARM) && !defined(SIMULATOR) +eq_arm.S #endif #endif diff --git a/apps/eq.c b/apps/eq.c index 3d2f8d133d..57c29dc357 100644 --- a/apps/eq.c +++ b/apps/eq.c @@ -213,7 +213,7 @@ void eq_hs_coefs(unsigned long cutoff, unsigned long Q, long db, long *c) c[4] = DIV64(-a2, a0, 24); } -#if !defined(CPU_COLDFIRE) || defined(SIMULATOR) +#if (!defined(CPU_COLDFIRE) && !defined(CPU_ARM)) || defined(SIMULATOR) void eq_filter(long **x, struct eqfilter *f, unsigned num, unsigned channels, unsigned shift) {