diff options
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/ports/SAMA/SAMA5D2x/hal_lld.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/ports/SAMA/SAMA5D2x/hal_lld.c b/os/hal/ports/SAMA/SAMA5D2x/hal_lld.c index ce190c7c0..707fed5cc 100644 --- a/os/hal/ports/SAMA/SAMA5D2x/hal_lld.c +++ b/os/hal/ports/SAMA/SAMA5D2x/hal_lld.c @@ -84,13 +84,13 @@ void hal_lld_init(void) { pmcEnableWP();
#endif
+ /* Advanced interrupt controller init */
+ aicInit();
+
#if defined(SAMA_DMA_REQUIRED)
dmaInit();
#endif
- /* Advanced interrupt controller init */
- aicInit();
-
}
/**
|