summaryrefslogtreecommitdiff
path: root/apps/eq.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/eq.c')
-rw-r--r--apps/eq.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/eq.c b/apps/eq.c
index 7921028403..17165be541 100644
--- a/apps/eq.c
+++ b/apps/eq.c
@@ -32,11 +32,11 @@
32 */ 32 */
33 33
34#define DIV64(x, y, z) (long)(((long long)(x) << (z))/(y)) 34#define DIV64(x, y, z) (long)(((long long)(x) << (z))/(y))
35/* This macro requires the EMAC unit to be in fractional mode 35/* TODO: This macro requires the EMAC unit to be in fractional mode
36 when the coef generator routines are called. If this can't be guaranteeed, 36 when the coef generator routines are called. If this can be guaranteeed,
37 then add "&& 0" below. This will use a slower coef calculation on Coldfire. 37 then remove the "&& 0" below for faster coef calculation on Coldfire.
38 */ 38 */
39#if defined(CPU_COLDFIRE) && !defined(SIMULATOR) 39#if defined(CPU_COLDFIRE) && !defined(SIMULATOR) && 0
40#define FRACMUL(x, y) \ 40#define FRACMUL(x, y) \
41({ \ 41({ \
42 long t; \ 42 long t; \