summaryrefslogtreecommitdiff
path: root/firmware/pcm_playback.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/pcm_playback.c')
-rw-r--r--firmware/pcm_playback.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/firmware/pcm_playback.c b/firmware/pcm_playback.c
index 123b7e3505..d317b3708e 100644
--- a/firmware/pcm_playback.c
+++ b/firmware/pcm_playback.c
@@ -50,7 +50,8 @@ void pcm_play_pause_unpause(void);
50 50
51/** Functions that require targeted implementation **/ 51/** Functions that require targeted implementation **/
52 52
53#if defined(CPU_COLDFIRE) || (CONFIG_CPU == S3C2440) || (CONFIG_CPU == IMX31L) 53#if defined(CPU_COLDFIRE) || (CONFIG_CPU == S3C2440) || (CONFIG_CPU == IMX31L) \
54 || (CONFIG_CPU == DM320)
54/* Implemented in target/... */ 55/* Implemented in target/... */
55#else 56#else
56/* dummy functions for those not actually supporting all this yet */ 57/* dummy functions for those not actually supporting all this yet */
@@ -71,7 +72,7 @@ void pcm_mute(bool mute)
71#endif /* defined(CPU_COLDFIRE) || (CONFIG_CPU == S3C2440) */ 72#endif /* defined(CPU_COLDFIRE) || (CONFIG_CPU == S3C2440) */
72 73
73#if defined(CPU_COLDFIRE) || (CONFIG_CPU == S3C2440) || defined(CPU_PP) \ 74#if defined(CPU_COLDFIRE) || (CONFIG_CPU == S3C2440) || defined(CPU_PP) \
74 || (CONFIG_CPU == IMX31L) 75 || (CONFIG_CPU == IMX31L) || (CONFIG_CPU == DM320)
75/* Implemented in target/... */ 76/* Implemented in target/... */
76#else 77#else
77static int pcm_freq = HW_SAMPR_DEFAULT; /* 44.1 is default */ 78static int pcm_freq = HW_SAMPR_DEFAULT; /* 44.1 is default */