aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports
diff options
context:
space:
mode:
authorisiora <none@example.com>2018-02-21 23:47:54 +0000
committerisiora <none@example.com>2018-02-21 23:47:54 +0000
commit04d9d4fb5f5c52a445fea4a2673813407f74ecbb (patch)
tree03bca3f8ffff4eb2b1788fdacecbbea85118c50a /os/hal/ports
parentd39b1c2290b255cfbbcbe2c58eda0fea34903d31 (diff)
downloadChibiOS-04d9d4fb5f5c52a445fea4a2673813407f74ecbb.tar.gz
ChibiOS-04d9d4fb5f5c52a445fea4a2673813407f74ecbb.tar.bz2
ChibiOS-04d9d4fb5f5c52a445fea4a2673813407f74ecbb.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11535 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports')
-rw-r--r--os/hal/ports/SAMA/SAMA5D2x/aic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/ports/SAMA/SAMA5D2x/aic.c b/os/hal/ports/SAMA/SAMA5D2x/aic.c
index e207e579d..08ef03b9d 100644
--- a/os/hal/ports/SAMA/SAMA5D2x/aic.c
+++ b/os/hal/ports/SAMA/SAMA5D2x/aic.c
@@ -86,7 +86,7 @@
static OSAL_IRQ_HANDLER(aicSpuriousHandler) {
OSAL_IRQ_PROLOGUE();
- (void)osalSysHalt("Spurious interrupt");
+ osalSysHalt("Spurious interrupt");
OSAL_IRQ_EPILOGUE();
}
@@ -132,7 +132,7 @@ void aicInit(void) {
aic->AIC_SMR = AIC_SMR_SRCTYPE(INT_LEVEL_SENSITIVE);
/* Default handler */
- aic->AIC_SVR = (uint32_t)aicUnexpectedHandler;
+// aic->AIC_SVR = (uint32_t)aicUnexpectedHandler;
}
aicEnableWP(aic);
}