summaryrefslogtreecommitdiff
path: root/bootloader
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader')
-rw-r--r--bootloader/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/bootloader/main.c b/bootloader/main.c
index 99eb449151..0f3d706d7b 100644
--- a/bootloader/main.c
+++ b/bootloader/main.c
@@ -204,6 +204,7 @@ void main(void)
204 kernel_init(); 204 kernel_init();
205 205
206 set_cpu_frequency(CPUFREQ_NORMAL); 206 set_cpu_frequency(CPUFREQ_NORMAL);
207 coldfire_set_pllcr_audio_bits(DEFAULT_PLLCR_AUDIO_BITS);
207 208
208 set_irq_level(0); 209 set_irq_level(0);
209 lcd_init(); 210 lcd_init();
@@ -311,6 +312,9 @@ void main(void)
311#ifdef HAVE_ADJUSTABLE_CPU_FREQ 312#ifdef HAVE_ADJUSTABLE_CPU_FREQ
312 /* Set up waitstates for the peripherals */ 313 /* Set up waitstates for the peripherals */
313 set_cpu_frequency(0); /* PLL off */ 314 set_cpu_frequency(0); /* PLL off */
315#ifdef CPU_COLDFIRE
316 coldfire_set_pllcr_audio_bits(DEFAULT_PLLCR_AUDIO_BITS);
317#endif
314#endif 318#endif
315 319
316#ifdef HAVE_UDA1380 320#ifdef HAVE_UDA1380