summaryrefslogtreecommitdiff
path: root/firmware/target/coldfire/pcm-coldfire.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/coldfire/pcm-coldfire.c')
-rw-r--r--firmware/target/coldfire/pcm-coldfire.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/coldfire/pcm-coldfire.c b/firmware/target/coldfire/pcm-coldfire.c
index 2614946543..fbab046b70 100644
--- a/firmware/target/coldfire/pcm-coldfire.c
+++ b/firmware/target/coldfire/pcm-coldfire.c
@@ -119,7 +119,7 @@ void pcm_set_frequency(unsigned int frequency)
} /* pcm_set_frequency */
/* apply audio settings */
-bool _pcm_apply_settings(bool clear_reset)
+static bool _pcm_apply_settings(bool clear_reset)
{
bool did_reset = false;
unsigned long iis_play_defparm = IIS_PLAY_DEFPARM;
@@ -154,7 +154,7 @@ bool _pcm_apply_settings(bool clear_reset)
} /* _pcm_apply_settings */
/* apply audio setting with all DMA interrupts disabled */
-void _pcm_apply_settings_irq_lock(bool clear_reset)
+static void _pcm_apply_settings_irq_lock(bool clear_reset)
{
int level = set_irq_level(DMA_IRQ_LEVEL);
_pcm_apply_settings(clear_reset);