diff options
author | Marcoen Hirschberg <marcoen@gmail.com> | 2007-06-17 15:08:37 +0000 |
---|---|---|
committer | Marcoen Hirschberg <marcoen@gmail.com> | 2007-06-17 15:08:37 +0000 |
commit | 0255489b7e8eb97658d060d5d017113f9895dfc6 (patch) | |
tree | 17b15c8fcd1f001ced308ef1c20e410029843c23 | |
parent | 8e02e451e7c01678b8a2d1a624fdbc5da0dffc41 (diff) | |
download | rockbox-0255489b7e8eb97658d060d5d017113f9895dfc6.tar.gz rockbox-0255489b7e8eb97658d060d5d017113f9895dfc6.zip |
remove dead code and unmatched #endif
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13651 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | firmware/pcm_playback.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/firmware/pcm_playback.c b/firmware/pcm_playback.c index 4194da6a9a..66519d6882 100644 --- a/firmware/pcm_playback.c +++ b/firmware/pcm_playback.c | |||
@@ -267,10 +267,6 @@ void pcm_mute(bool mute) | |||
267 | #define PEAK_SAMPLES (44100/50) | 267 | #define PEAK_SAMPLES (44100/50) |
268 | void pcm_calculate_peaks(int *left, int *right) | 268 | void pcm_calculate_peaks(int *left, int *right) |
269 | { | 269 | { |
270 | #if (CONFIG_CPU == S3C2440) | ||
271 | (void)left; | ||
272 | (void)right; | ||
273 | #else | ||
274 | short *addr; | 270 | short *addr; |
275 | short *end; | 271 | short *end; |
276 | { | 272 | { |
@@ -331,7 +327,6 @@ void pcm_calculate_peaks(int *left, int *right) | |||
331 | #endif | 327 | #endif |
332 | } | 328 | } |
333 | #endif | 329 | #endif |
334 | #endif /* CPU_COLDFIRE */ | ||
335 | 330 | ||
336 | /**************************************************************************** | 331 | /**************************************************************************** |
337 | * Functions that do not require targeted implementation but only a targeted | 332 | * Functions that do not require targeted implementation but only a targeted |