summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/main.c')
-rw-r--r--apps/main.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/main.c b/apps/main.c
index 858ec03847..2555deb12f 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -694,7 +694,7 @@ static void init(void)
694} 694}
695 695
696#ifdef CPU_PP 696#ifdef CPU_PP
697void cop_main(void) 697void __attribute__((noreturn)) cop_main(void)
698{ 698{
699/* This is the entry point for the coprocessor 699/* This is the entry point for the coprocessor
700 Anyone not running an upgraded bootloader will never reach this point, 700 Anyone not running an upgraded bootloader will never reach this point,
@@ -705,7 +705,6 @@ void cop_main(void)
705 destroyed for purposes of continuity. The cop sits idle until at least 705 destroyed for purposes of continuity. The cop sits idle until at least
706 one thread exists on it. */ 706 one thread exists on it. */
707 707
708/* 3G doesn't have Rolo or dual core support yet */
709#if NUM_CORES > 1 708#if NUM_CORES > 1
710 system_init(); 709 system_init();
711 kernel_init(); 710 kernel_init();
@@ -717,5 +716,4 @@ void cop_main(void)
717} 716}
718#endif /* CPU_PP */ 717#endif /* CPU_PP */
719 718
720#endif 719#endif /* SIMULATOR */
721