aboutsummaryrefslogtreecommitdiff
path: root/src/soc/marvell/mvmap2315/reset.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/marvell/mvmap2315/reset.c')
-rw-r--r--src/soc/marvell/mvmap2315/reset.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/soc/marvell/mvmap2315/reset.c b/src/soc/marvell/mvmap2315/reset.c
index 531f4a0b50..40067ed7ab 100644
--- a/src/soc/marvell/mvmap2315/reset.c
+++ b/src/soc/marvell/mvmap2315/reset.c
@@ -21,8 +21,9 @@
#include <soc/clock.h>
#include <soc/reset.h>
-void mvmap2315_reset(void)
+void __attribute__((noreturn)) mvmap2315_reset(void)
{
clrbits_le32(&mvmap2315_mpmu_clk->resetmcu, MVMAP2315_MCU_RST_EN);
clrbits_le32(&mvmap2315_mpmu_clk->resetap, MVMAP2315_AP_RST_EN);
+ for (;;) ;
}