diff options
| author | Steve Bavin <pondlife@pondlife.me> | 2007-06-17 16:32:02 +0000 |
|---|---|---|
| committer | Steve Bavin <pondlife@pondlife.me> | 2007-06-17 16:32:02 +0000 |
| commit | eb3e102d081ea3caa3079b0e01cc23e7774f4c6a (patch) | |
| tree | 842167038d881914425ec17a4cd077a01de333f4 | |
| parent | 0255489b7e8eb97658d060d5d017113f9895dfc6 (diff) | |
| download | rockbox-eb3e102d081ea3caa3079b0e01cc23e7774f4c6a.zip rockbox-eb3e102d081ea3caa3079b0e01cc23e7774f4c6a.tar.gz rockbox-eb3e102d081ea3caa3079b0e01cc23e7774f4c6a.tar.bz2 rockbox-eb3e102d081ea3caa3079b0e01cc23e7774f4c6a.tar.xz | |
Fix up #endif.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13652 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/pcm_playback.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/firmware/pcm_playback.c b/firmware/pcm_playback.c index 66519d6..80f7e1f 100644 --- a/firmware/pcm_playback.c +++ b/firmware/pcm_playback.c @@ -23,7 +23,7 @@ #include "sound.h" #if CONFIG_CPU == PNX0101 #include "string.h" -#endif +#endif /* CONFIG_CPU == PNX0101 */ /** * APIs implemented in the target-specific portion: @@ -273,7 +273,7 @@ void pcm_calculate_peaks(int *left, int *right) #if CONFIG_CPU == PNX0101 size_t samples = p_size / 4; addr = p; -#endif +#endif /* CONFIG_CPU */. if (samples > PEAK_SAMPLES) samples = PEAK_SAMPLES - (PEAK_STRIDE - 1); @@ -324,9 +324,10 @@ void pcm_calculate_peaks(int *left, int *right) else *right = peak_value; } -#endif } -#endif +#endif /* !defined(CPU_PP) */ + +#endif /* !defined(CPU_COLDFIRE) && (CONFIG_CPU != S3C2440) */ /**************************************************************************** * Functions that do not require targeted implementation but only a targeted |