summaryrefslogtreecommitdiff
path: root/apps/eq.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2006-02-04 23:16:31 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2006-02-04 23:16:31 +0000
commitdd8cb8a2c12a538e935d508e77794753f5f11276 (patch)
treeca6a135526ada7a629d8046af74bc30b37e83003 /apps/eq.c
parent621bcc22940aed0242ed1795491a400521d2394d (diff)
downloadrockbox-dd8cb8a2c12a538e935d508e77794753f5f11276.tar.gz
rockbox-dd8cb8a2c12a538e935d508e77794753f5f11276.zip
Committed a little too much
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8569 a1c6a512-1295-4272-9138-f99709370657
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; \